Home | History | Annotate | Download | only in extensions

Lines Matching full:dscp

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,
47 XTOPT_POINTER(struct xt_dscp_info, dscp)},
48 {.name = "dscp-class", .id = O_DSCP_CLASS, .excl = F_DSCP,
64 dinfo->dscp = class_to_dscp(cb->arg);
75 "DSCP match: Parameter --dscp is required");
83 printf(" DSCP match %s0x%02x", dinfo->invert ? "!" : "", dinfo->dscp);
91 printf("%s --dscp 0x%02x", dinfo->invert ? " !" : "", dinfo->dscp);
96 .name = "dscp",