We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcb30a0 commit 3096784Copy full SHA for 3096784
src/liblibc/lib.rs
@@ -4195,8 +4195,10 @@ pub mod consts {
4195
pub const IP_HDRINCL: c_int = 2;
4196
pub const IP_ADD_MEMBERSHIP: c_int = 12;
4197
pub const IP_DROP_MEMBERSHIP: c_int = 13;
4198
- pub const IPV6_ADD_MEMBERSHIP: c_int = 12; // don't exist, keep same as IP_ADD_MEMBERSHIP
4199
- pub const IPV6_DROP_MEMBERSHIP: c_int = 13; // don't exist, keep same as IP_DROP_MEMBERSHIP
+ // don't exist, keep same as IP_ADD_MEMBERSHIP
+ pub const IPV6_ADD_MEMBERSHIP: c_int = 12;
4200
+ // don't exist, keep same as IP_DROP_MEMBERSHIP
4201
+ pub const IPV6_DROP_MEMBERSHIP: c_int = 13;
4202
4203
pub const TCP_NODELAY: c_int = 1;
4204
//pub const TCP_KEEPIDLE: c_int = ;
0 commit comments