/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/netfilter_ipv4/ |
ipt_dscp_.h | 20 u_int8_t dscp; member in struct:ipt_dscp_info
|
/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/netfilter_ipv4/ |
ipt_dscp_.h | 20 u_int8_t dscp; member in struct:ipt_dscp_info
|
/external/iptables/include/linux/netfilter/ |
xt_DSCP.h | 1 /* x_tables module for setting the IPv4/IPv6 DSCP field 7 * See RFC2474 for a description of the DSCP field within the IP Header. 18 __u8 dscp; member in struct:xt_DSCP_info
|
xt_dscp.h | 1 /* x_tables module for matching the IPv4/IPv6 DSCP field 6 * See RFC2474 for a description of the DSCP field within the IP Header. 21 __u8 dscp; member in struct:xt_dscp_info
|
/external/iptables/extensions/ |
libxt_DSCP.c | 1 /* Shared library add-on to iptables for DSCP 30 "DSCP target options\n" 31 " --set-dscp value Set DSCP field in packet header to value\n" 34 " --set-dscp-class class Set the DSCP field in packet header to the\n" 44 {.name = "set-dscp", .id = O_SET_DSCP, .excl = F_SET_DSCP_CLASS, 47 XTOPT_POINTER(struct xt_DSCP_info, dscp)}, 48 {.name = "set-dscp-class", .id = O_SET_DSCP_CLASS, .excl = F_SET_DSCP, 60 dinfo->dscp = class_to_dscp(cb->arg) [all...] |
libxt_dscp.c | 1 /* Shared library add-on to iptables for DSCP 11 * For a list of DSCP codepoints see 12 * http://www.iana.org/assignments/dscp-registry 33 "dscp match options\n" 34 "[!] --dscp value Match DSCP codepoint with numerical value\n" 37 "[!] --dscp-class name Match the DiffServ class. This value may\n" 44 {.name = "dscp", .id = O_DSCP, .excl = F_DSCP_CLASS, 46 .flags = XTOPT_PUT, XTOPT_POINTER(struct xt_dscp_info, dscp)}, 47 {.name = "dscp-class", .id = O_DSCP_CLASS, .excl = F_DSCP [all...] |
/external/iproute2/examples/diffserv/ |
afcbq | 11 # AF DSCP values used (based on AF draft 04) 13 # AF DSCP values 21 # A simple DSCP-class relationship formula used to generate 24 # $dscp = ($class*8+$drop*2) 76 $dscp = $class*8+$drop*2; 79 "handle $dscp tcindex classid 1:$tcindex\n";
|