File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -2965,12 +2965,14 @@ pub mod consts {
2965
2965
pub static AF_INET6 : c_int = 10 ;
2966
2966
pub static SOCK_STREAM : c_int = 2 ;
2967
2967
pub static SOCK_DGRAM : c_int = 1 ;
2968
+ pub static SOCK_RAW : c_int = 3 ;
2968
2969
pub static IPPROTO_TCP : c_int = 6 ;
2969
2970
pub static IPPROTO_IP : c_int = 0 ;
2970
2971
pub static IPPROTO_IPV6 : c_int = 41 ;
2971
2972
pub static IP_MULTICAST_TTL : c_int = 33 ;
2972
2973
pub static IP_MULTICAST_LOOP : c_int = 34 ;
2973
2974
pub static IP_TTL : c_int = 2 ;
2975
+ pub static IP_HDRINCL : c_int = 3 ;
2974
2976
pub static IP_ADD_MEMBERSHIP : c_int = 35 ;
2975
2977
pub static IP_DROP_MEMBERSHIP : c_int = 36 ;
2976
2978
pub static IPV6_ADD_MEMBERSHIP : c_int = 20 ;
@@ -3021,8 +3023,12 @@ pub mod consts {
3021
3023
pub mod extra {
3022
3024
use types:: os:: arch:: c95:: c_int;
3023
3025
3026
+ pub static AF_PACKET : c_int = 17 ;
3027
+ pub static IPPROTO_RAW : c_int = 255 ;
3028
+
3024
3029
pub static O_RSYNC : c_int = 16400 ;
3025
3030
pub static O_DSYNC : c_int = 16 ;
3031
+ pub static O_NONBLOCK : c_int = 128 ;
3026
3032
pub static O_SYNC : c_int = 16400 ;
3027
3033
3028
3034
pub static PROT_GROWSDOWN : c_int = 0x01000000 ;
You can’t perform that action at this time.
0 commit comments