Home | History | Annotate | Download | only in extensions

Lines Matching refs: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,
46 .flags = XTOPT_PUT, XTOPT_POINTER(struct xt_dscp_info, dscp)},
47 {.name = "dscp-class", .id = O_DSCP_CLASS, .excl = F_DSCP,
63 dinfo->dscp = class_to_dscp(cb->arg);
74 "DSCP match: Parameter --dscp is required");
82 printf(" DSCP match %s0x%02x", dinfo->invert ? "!" : "", dinfo->dscp);
90 printf("%s --dscp 0x%02x", dinfo->invert ? " !" : "", dinfo->dscp);
95 .name = "dscp",