File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
src/unix/linux_like/android Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -3096,6 +3096,12 @@ TUN_F_USO4
30963096TUN_F_USO6
30973097TUN_PKT_STRIP
30983098TUN_TX_TIMESTAMP
3099+ UDP_CORK
3100+ UDP_ENCAP
3101+ UDP_GRO
3102+ UDP_NO_CHECK6_RX
3103+ UDP_NO_CHECK6_TX
3104+ UDP_SEGMENT
30993105UINPUT_MAX_NAME_SIZE
31003106UINPUT_VERSION
31013107UIO_MAXIOV
Original file line number Diff line number Diff line change @@ -1289,6 +1289,15 @@ pub const SOL_ATALK: c_int = 258;
12891289pub const SOL_NETROM : c_int = 259 ;
12901290pub const SOL_ROSE : c_int = 260 ;
12911291
1292+ /* UDP socket options */
1293+ // include/uapi/linux/udp.h
1294+ pub const UDP_CORK : c_int = 1 ;
1295+ pub const UDP_ENCAP : c_int = 100 ;
1296+ pub const UDP_NO_CHECK6_TX : c_int = 101 ;
1297+ pub const UDP_NO_CHECK6_RX : c_int = 102 ;
1298+ pub const UDP_SEGMENT : c_int = 103 ;
1299+ pub const UDP_GRO : c_int = 104 ;
1300+
12921301/* DCCP socket options */
12931302pub const DCCP_SOCKOPT_PACKET_SIZE : c_int = 1 ;
12941303pub const DCCP_SOCKOPT_SERVICE : c_int = 2 ;
You can’t perform that action at this time.
0 commit comments