File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed
src/unix/linux_like/android Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ diff --git a/src/unix/linux_like/android/mod.rs b/src/unix/linux_like/android/mod.rs
2
+ index 236f57a4..fe2d2096 100644
3
+ --- a/src/unix/linux_like/android/mod.rs
4
+ +++ b/src/unix/linux_like/android/mod.rs
5
+ @@ -2168,9 +2168,20 @@ pub const NFT_TRACETYPE_RULE: ::c_int = 3;
6
+ pub const NFT_NG_INCREMENTAL: ::c_int = 0;
7
+ pub const NFT_NG_RANDOM: ::c_int = 1;
8
+
9
+ + // bionic/libc/kernel/uapi/linux/if_tun.h
10
+ pub const IFF_TUN: ::c_int = 0x0001;
11
+ pub const IFF_TAP: ::c_int = 0x0002;
12
+ + pub const IFF_NAPI: ::c_int = 0x0010;
13
+ + pub const IFF_NAPI_FRAGS: ::c_int = 0x0020;
14
+ pub const IFF_NO_PI: ::c_int = 0x1000;
15
+ + pub const IFF_ONE_QUEUE: ::c_int = 0x2000;
16
+ + pub const IFF_VNET_HDR: ::c_int = 0x4000;
17
+ + pub const IFF_TUN_EXCL: ::c_int = 0x8000;
18
+ + pub const IFF_MULTI_QUEUE: ::c_int = 0x0100;
19
+ + pub const IFF_ATTACH_QUEUE: ::c_int = 0x0200;
20
+ + pub const IFF_DETACH_QUEUE: ::c_int = 0x0400;
21
+ + pub const IFF_PERSIST: ::c_int = 0x0800;
22
+ + pub const IFF_NOFILTER: ::c_int = 0x1000;
23
+
24
+ // start android/platform/bionic/libc/kernel/uapi/linux/if_ether.h
25
+ // from https://android.googlesource.com/
Original file line number Diff line number Diff line change @@ -2168,9 +2168,20 @@ pub const NFT_TRACETYPE_RULE: ::c_int = 3;
2168
2168
pub const NFT_NG_INCREMENTAL : :: c_int = 0 ;
2169
2169
pub const NFT_NG_RANDOM : :: c_int = 1 ;
2170
2170
2171
+ // bionic/libc/kernel/uapi/linux/if_tun.h
2171
2172
pub const IFF_TUN : :: c_int = 0x0001 ;
2172
2173
pub const IFF_TAP : :: c_int = 0x0002 ;
2174
+ pub const IFF_NAPI : :: c_int = 0x0010 ;
2175
+ pub const IFF_NAPI_FRAGS : :: c_int = 0x0020 ;
2173
2176
pub const IFF_NO_PI : :: c_int = 0x1000 ;
2177
+ pub const IFF_ONE_QUEUE : :: c_int = 0x2000 ;
2178
+ pub const IFF_VNET_HDR : :: c_int = 0x4000 ;
2179
+ pub const IFF_TUN_EXCL : :: c_int = 0x8000 ;
2180
+ pub const IFF_MULTI_QUEUE : :: c_int = 0x0100 ;
2181
+ pub const IFF_ATTACH_QUEUE : :: c_int = 0x0200 ;
2182
+ pub const IFF_DETACH_QUEUE : :: c_int = 0x0400 ;
2183
+ pub const IFF_PERSIST : :: c_int = 0x0800 ;
2184
+ pub const IFF_NOFILTER : :: c_int = 0x1000 ;
2174
2185
2175
2186
// start android/platform/bionic/libc/kernel/uapi/linux/if_ether.h
2176
2187
// from https://android.googlesource.com/
You can’t perform that action at this time.
0 commit comments