diff options
author | hannes <hannes> | 2004-10-07 14:53:09 +0000 |
---|---|---|
committer | hannes <hannes> | 2004-10-07 14:53:09 +0000 |
commit | 4d399db49937fa423cefe179173e351205796036 (patch) | |
tree | 20e3d68d769b6b66a19fab39303ba2f020382eb9 /nlpid.h | |
parent | 18c020c000d2cc939d52364e7812cb038e804838 (diff) | |
download | tcpdump-4d399db49937fa423cefe179173e351205796036.tar.gz |
-move the nlpid definitions and tokens to a dedicated file(s)
-make use of it in the ISO, Frame-relay and CDP printers
Diffstat (limited to 'nlpid.h')
-rw-r--r-- | nlpid.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/nlpid.h b/nlpid.h new file mode 100644 index 00000000..69641121 --- /dev/null +++ b/nlpid.h @@ -0,0 +1,30 @@ +/* @(#) $Header: /tcpdump/master/tcpdump/nlpid.h,v 1.1 2004-10-07 14:53:10 hannes Exp $ (LBL) */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that: (1) source code + * distributions retain the above copyright notice and this paragraph + * in its entirety, and (2) distributions including binary code include + * the above copyright notice and this paragraph in its entirety in + * the documentation or other materials provided with the distribution. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND + * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT + * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE. + * + * Original code by Hannes Gredler (hannes@juniper.net) + */ + +extern struct tok nlpid_values[]; + +#define NLPID_NULLNS 0x00 +#define NLPID_LMI 0x08 /* ANSI T1.617 Annex D or ITU-T Q.933 Annex A */ +#define NLPID_CISCO_LMI 0x09 /* The original, aka Cisco, aka Gang of Four */ +#define NLPID_SNAP 0x80 +#define NLPID_CLNP 0x81 /* iso9577 */ +#define NLPID_ESIS 0x82 /* iso9577 */ +#define NLPID_ISIS 0x83 /* iso9577 */ +#define NLPID_CONS 0x84 +#define NLPID_IDRP 0x85 +#define NLPID_IP 0xcc +#define NLPID_X25_ESIS 0x8a +#define NLPID_IP6 0x8e |