lin
2025-07-30 fcd736bf35fd93b563e9bbf594f2aa7b62028cc9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef _SEPOL_INTERNAL_HANDLE_H_
#define _SEPOL_INTERNAL_HANDLE_H_
 
#include <sepol/handle.h>
 
struct sepol_handle {
   /* Error handling */
   int msg_level;
   const char *msg_channel;
   const char *msg_fname;
#ifdef __GNUC__
   __attribute__ ((format(printf, 3, 4)))
#endif
   void (*msg_callback) (void *varg,
                 sepol_handle_t * handle, const char *fmt, ...);
   void *msg_callback_arg;
 
   int disable_dontaudit;
   int expand_consume_base;
   int preserve_tunables;
};
 
#endif