• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1diff --git a/src/unix/linux_like/android/mod.rs b/src/unix/linux_like/android/mod.rs
2index 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/
26