diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-08-22 18:00:40 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-08-22 18:00:40 +0000 |
commit | 7111f8301309f49ba6185f76ff157023247cf74c (patch) | |
tree | 1322668050388cdf8e826dd49ed0ccb8d14a0a7f /packet-isis-lsp.h | |
parent | 4d5ab5490b65d8b0e1b00f980d8feed6536b38dc (diff) | |
download | wireshark-7111f8301309f49ba6185f76ff157023247cf74c.tar.gz wireshark-7111f8301309f49ba6185f76ff157023247cf74c.tar.bz2 wireshark-7111f8301309f49ba6185f76ff157023247cf74c.zip |
Fixes from Hannes Gredler.
svn path=/trunk/; revision=3864
Diffstat (limited to 'packet-isis-lsp.h')
-rw-r--r-- | packet-isis-lsp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-isis-lsp.h b/packet-isis-lsp.h index cb858ac379..6011ee8f4b 100644 --- a/packet-isis-lsp.h +++ b/packet-isis-lsp.h @@ -1,7 +1,7 @@ /* packet-isis-lsp.h * Defines and such for LSP and their CLV decodes * - * $Id: packet-isis-lsp.h,v 1.9 2001/07/02 00:19:34 guy Exp $ + * $Id: packet-isis-lsp.h,v 1.10 2001/08/22 18:00:40 guy Exp $ * Stuart Stanley <stuarts@mxmail.net> * * Ethereal - Network traffic analyzer @@ -48,10 +48,10 @@ #define ISIS_LSP_TYPE_UNUSED2 2 #define ISIS_LSP_TYPE_LEVEL_2 3 -#define ISIS_LSP_CLV_METRIC_SUPPORTED(x) ((x)&0xf0) -#define ISIS_LSP_CLV_METRIC_IE(x) ((x)&0x20) +#define ISIS_LSP_CLV_METRIC_SUPPORTED(x) ((x)&0x80) +#define ISIS_LSP_CLV_METRIC_IE(x) ((x)&0x40) #define ISIS_LSP_CLV_METRIC_RESERVED(x) ((x)&0x40) -#define ISIS_LSP_CLV_METRIC_UPDOWN(x) ((x)&0x40) +#define ISIS_LSP_CLV_METRIC_UPDOWN(x) ((x)&0x80) #define ISIS_LSP_CLV_METRIC_VALUE(x) ((x)&0x3f) /* |