aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ppp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-04-16 10:04:33 +0000
committerGuy Harris <guy@alum.mit.edu>2001-04-16 10:04:33 +0000
commit77789be82e07e04c592b3d92bf057b1858e99f6c (patch)
treebb3bfeb289d92e59456cbdce615a387fd01f1f61 /packet-ppp.c
parent846213236a59fc082c038e9d5e13efb4bfd81c36 (diff)
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-ppp.c')
-rw-r--r--packet-ppp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/packet-ppp.c b/packet-ppp.c
index b9b36982e6..6120f86e2a 100644
--- a/packet-ppp.c
+++ b/packet-ppp.c
@@ -1,7 +1,7 @@
/* packet-ppp.c
* Routines for ppp packet disassembly
*
- * $Id: packet-ppp.c,v 1.61 2001/03/31 10:35:54 guy Exp $
+ * $Id: packet-ppp.c,v 1.62 2001/04/16 10:04:30 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -93,6 +93,7 @@ static gint ppp_fcs_decode = 0; /* 0 = No FCS, 1 = 16 bit FCS, 2 = 32 bit FCS */
static const value_string ppp_vals[] = {
{PPP_IP, "IP" },
+ {PPP_OSI, "OSI" },
{PPP_AT, "Appletalk" },
{PPP_IPX, "Netware IPX/SPX"},
{PPP_VJC_COMP, "VJ compressed TCP"},
@@ -106,6 +107,7 @@ static const value_string ppp_vals[] = {
{PPP_MPLS_UNI, "MPLS Unicast"},
{PPP_MPLS_MULTI, "MPLS Multicast"},
{PPP_IPCP, "IP Control Protocol" },
+ {PPP_OSICP, "OSI Control Protocol" },
{PPP_ATCP, "AppleTalk Control Protocol" },
{PPP_IPXCP, "IPX Control Protocol" },
{PPP_CCP, "Compression Control Protocol" },