diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-01-13 05:41:24 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-01-13 05:41:24 +0000 |
commit | 7368e42aacab18993f51759d2179c44f90b57f98 (patch) | |
tree | a69b59f01c2454af2345e4f34c2e3931ade51451 /packet-osi.c | |
parent | d7816c59851625a5ee2ddfbdb95e9b0f1d8748eb (diff) | |
download | wireshark-7368e42aacab18993f51759d2179c44f90b57f98.tar.gz wireshark-7368e42aacab18993f51759d2179c44f90b57f98.tar.bz2 wireshark-7368e42aacab18993f51759d2179c44f90b57f98.zip |
Add the NLPID value for PPP.
In Q.931 and Q.2931, the TR 9577 values are NLPIDs, so use "nlpid_vals"
to dissect them, and values from "nlpid.h" to refer to them.
svn path=/trunk/; revision=1461
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 aca7d058a1..59d332efd6 100644 --- a/packet-osi.c +++ b/packet-osi.c @@ -1,7 +1,7 @@ /* packet-osi.c * Routines for ISO/OSI network and transport protocol packet disassembly * - * $Id: packet-osi.c,v 1.14 2000/01/13 00:41:11 guy Exp $ + * $Id: packet-osi.c,v 1.15 2000/01/13 05:41:24 guy Exp $ * Laurent Deniel <deniel@worldnet.fr> * * Ethereal - Network traffic analyzer @@ -1590,6 +1590,7 @@ const value_string nlpid_vals[] = { { NLPID_ISO10589_ISIS, "ISIS" }, { NLPID_ISO9542X25_ESIS, "ESIS (X.25)" }, { NLPID_IP, "IP" }, + { NLPID_PPP, "PPP" }, { 0, NULL }, }; |