1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct cap_channel {
_unused: [u8; 0],
}
pub type cap_channel_t = cap_channel;
extern "C" {
pub fn cap_channel_flags(chan: *const cap_channel_t) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn cap_init() -> *mut cap_channel_t;
}
extern "C" {
pub fn cap_service_open(
chan: *const cap_channel_t,
name: *const ::std::os::raw::c_char,
) -> *mut cap_channel_t;
}
extern "C" {
pub fn cap_service_limit(
chan: *const cap_channel_t,
names: *const *const ::std::os::raw::c_char,
nnames: usize,
) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn cap_wrap(
sock: ::std::os::raw::c_int,
flags: ::std::os::raw::c_int,
) -> *mut cap_channel_t;
}
extern "C" {
pub fn cap_unwrap(
chan: *mut cap_channel_t,
flags: *mut ::std::os::raw::c_int,
) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn cap_clone(chan: *const cap_channel_t) -> *mut cap_channel_t;
}
extern "C" {
pub fn cap_close(chan: *mut cap_channel_t);
}
extern "C" {
pub fn cap_sock(chan: *const cap_channel_t) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn cap_limit_set(
chan: *const cap_channel_t,
limits: *mut nvlist_t,
) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn cap_limit_get(
chan: *const cap_channel_t,
limitsp: *mut *mut nvlist_t,
) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn cap_send_nvlist(
chan: *const cap_channel_t,
nvl: *const nvlist_t,
) -> ::std::os::raw::c_int;
}
extern "C" {
pub fn cap_recv_nvlist(chan: *const cap_channel_t) -> *mut nvlist_t;
}
extern "C" {
pub fn cap_xfer_nvlist(chan: *const cap_channel_t, nvl: *mut nvlist_t) -> *mut nvlist_t;
}
pub type service_limit_func_t = ::std::option::Option<
unsafe extern "C" fn(arg1: *const nvlist_t, arg2: *const nvlist_t) -> ::std::os::raw::c_int,
>;
pub type service_command_func_t = ::std::option::Option<
unsafe extern "C" fn(
cmd: *const ::std::os::raw::c_char,
arg1: *const nvlist_t,
arg2: *mut nvlist_t,
arg3: *mut nvlist_t,
) -> ::std::os::raw::c_int,
>;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct casper_service {
_unused: [u8; 0],
}
extern "C" {
pub fn service_register(
name: *const ::std::os::raw::c_char,
limitfunc: service_limit_func_t,
commandfunc: service_command_func_t,
flags: u64,
) -> *mut casper_service;
}