diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-04-16 10:04:33 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-04-16 10:04:33 +0000 |
commit | 77789be82e07e04c592b3d92bf057b1858e99f6c (patch) | |
tree | bb3bfeb289d92e59456cbdce615a387fd01f1f61 /packet-osi.c | |
parent | 846213236a59fc082c038e9d5e13efb4bfd81c36 (diff) | |
download | wireshark-77789be82e07e04c592b3d92bf057b1858e99f6c.tar.gz wireshark-77789be82e07e04c592b3d92bf057b1858e99f6c.tar.bz2 wireshark-77789be82e07e04c592b3d92bf057b1858e99f6c.zip |
Assorted ISIS enhancements from Hannes Gredler.
When dissecting the ISIS NLPID CLV, use the "nlpid_vals" array to
convert NLPID values to protocol names.
svn path=/trunk/; revision=3308
Diffstat (limited to 'packet-osi.c')
-rw-r--r-- | packet-osi.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packet-osi.c b/packet-osi.c index a615772e21..b165677243 100644 --- a/packet-osi.c +++ b/packet-osi.c @@ -2,7 +2,7 @@ * Routines for ISO/OSI network and transport protocol packet disassembly * Main entrance point and common functions * - * $Id: packet-osi.c,v 1.43 2001/04/08 19:32:03 guy Exp $ + * $Id: packet-osi.c,v 1.44 2001/04/16 10:04:30 guy Exp $ * Laurent Deniel <deniel@worldnet.fr> * Ralf Schneider <Ralf.Schneider@t-online.de> * @@ -94,6 +94,7 @@ const value_string nlpid_vals[] = { { NLPID_ISO11577, "ISO 11577" }, { NLPID_COMPRESSED, "Data compression protocol" }, { NLPID_IP, "IP" }, + { NLPID_IP6, "IPv6" }, { NLPID_PPP, "PPP" }, { 0, NULL }, }; |