File tree 6 files changed +21
-0
lines changed
6 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -2844,6 +2844,7 @@ intptr_t
2844
2844
ioctl
2845
2845
iovec
2846
2846
ip_mreq
2847
+ ip_mreqn
2847
2848
ip_mreq_source
2848
2849
ipv6_mreq
2849
2850
isalnum
Original file line number Diff line number Diff line change @@ -1724,6 +1724,7 @@ in6_pktinfo
1724
1724
in_pktinfo
1725
1725
initgroups
1726
1726
integer_t
1727
+ ip_mreqn
1727
1728
ipc_perm
1728
1729
kern_return_t
1729
1730
kevent
Original file line number Diff line number Diff line change @@ -1536,6 +1536,7 @@ if_nameindex
1536
1536
ifaddrs
1537
1537
in6_pktinfo
1538
1538
initgroups
1539
+ ip_mreqn
1539
1540
ipc_perm
1540
1541
jail
1541
1542
jail_attach
Original file line number Diff line number Diff line change @@ -215,6 +215,12 @@ s! {
215
215
pub imr_interface: in_addr,
216
216
}
217
217
218
+ pub struct ip_mreqn {
219
+ pub imr_multiaddr: in_addr,
220
+ pub imr_address: in_addr,
221
+ pub imr_ifindex: :: c_int,
222
+ }
223
+
218
224
pub struct aiocb {
219
225
pub aio_fildes: :: c_int,
220
226
pub aio_offset: :: off_t,
Original file line number Diff line number Diff line change 90
90
pub imr_interface: in_addr,
91
91
}
92
92
93
+ pub struct ip_mreqn {
94
+ pub imr_multiaddr: in_addr,
95
+ pub imr_address: in_addr,
96
+ pub imr_ifindex: :: c_int,
97
+ }
98
+
93
99
pub struct glob_t {
94
100
pub gl_pathc: :: size_t,
95
101
pub gl_matchc: :: size_t,
Original file line number Diff line number Diff line change 73
73
pub cmsg_type: :: c_int,
74
74
}
75
75
76
+ pub struct ip_mreqn {
77
+ pub imr_multiaddr: :: in_addr,
78
+ pub imr_address: :: in_addr,
79
+ pub imr_ifindex: :: c_int,
80
+ }
81
+
76
82
pub struct termios {
77
83
pub c_iflag: :: tcflag_t,
78
84
pub c_oflag: :: tcflag_t,
You can’t perform that action at this time.
0 commit comments