From: Lionel Elie Mamane <[EMAIL PROTECTED]> The help/usage screen of ematch cmp and nbyte say recognised symbolic values for "layer FOO" are link, header and next-header, but the code does _not_ implement that: it will recognise "next-header" as what is supposed to be "header" and will not recognise "header". The right symbolic values seem to be link, network, transport. Here is a patch that changes the help/usage screen to match the code. (http://bugs.debian.org/438653)
Signed-off-by: Andreas Henriksson <[EMAIL PROTECTED]> --- tc/em_cmp.c | 4 ++-- tc/em_nbyte.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tc/em_cmp.c b/tc/em_cmp.c index b8f9b46..ce72a42 100644 --- a/tc/em_cmp.c +++ b/tc/em_cmp.c @@ -1,5 +1,5 @@ /* - * em_cmp.c Simle coparison Ematch + * em_cmp.c Simple comparison Ematch * * This program is free software; you can distribute it and/or * modify it under the terms of the GNU General Public License @@ -32,7 +32,7 @@ static void cmp_print_usage(FILE *fd) "Usage: cmp(ALIGN at OFFSET [ ATTRS ] { eq | lt | gt } VALUE)\n" \ "where: ALIGN := { u8 | u16 | u32 }\n" \ " ATTRS := [ layer LAYER ] [ mask MASK ] [ trans ]\n" \ - " LAYER := { link | header | next-header | 0..%d }\n" \ + " LAYER := { link | network | transport | 0..%d }\n" \ "\n" \ "Example: cmp(u16 at 3 layer 2 mask 0xff00 gt 20)\n", TCF_LAYER_MAX); diff --git a/tc/em_nbyte.c b/tc/em_nbyte.c index 98f9883..242c361 100644 --- a/tc/em_nbyte.c +++ b/tc/em_nbyte.c @@ -32,7 +32,7 @@ static void nbyte_print_usage(FILE *fd) "Usage: nbyte(NEEDLE at OFFSET [layer LAYER])\n" \ "where: NEEDLE := { string | \"c-escape-sequence\" }\n" \ " OFFSET := int\n" \ - " LAYER := { link | header | next-header | 0..%d }\n" \ + " LAYER := { link | network | transport | 0..%d }\n" \ "\n" \ "Example: nbyte(\"ababa\" at 12 layer 1)\n", TCF_LAYER_MAX); -- 1.5.3.4 - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html