...
1
2
3
4
5
6
7 package route
8
9
19 import "C"
20
21 const (
22 sizeofIfMsghdrDarwin15 = C.sizeof_struct_if_msghdr
23 sizeofIfaMsghdrDarwin15 = C.sizeof_struct_ifa_msghdr
24 sizeofIfmaMsghdrDarwin15 = C.sizeof_struct_ifma_msghdr
25 sizeofIfMsghdr2Darwin15 = C.sizeof_struct_if_msghdr2
26 sizeofIfmaMsghdr2Darwin15 = C.sizeof_struct_ifma_msghdr2
27
28 sizeofRtMsghdrDarwin15 = C.sizeof_struct_rt_msghdr
29 sizeofRtMsghdr2Darwin15 = C.sizeof_struct_rt_msghdr2
30
31 sizeofSockaddrInet = C.sizeof_struct_sockaddr_in
32 sizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6
33 )
34
View as plain text