mobile_nebula/ios/NebulaNetworkExtension/CtlInfo.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
363 B
C
Raw Normal View History

2021-09-21 14:31:26 +00:00
#include <stdint.h>
#include <sys/types.h>
2021-09-21 14:31:26 +00:00
/* <sys/kern_control.h> */
#define CTLIOCGINFO 0xc0644e03UL
struct ctl_info {
u_int32_t ctl_id;
char ctl_name[96];
};
struct sockaddr_ctl {
u_char sc_len;
u_char sc_family;
u_int16_t ss_sysaddr;
u_int32_t sc_id;
u_int32_t sc_unit;
u_int32_t sc_reserved[5];
};