diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-08-05 10:09:40 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-08-05 10:09:40 +0000 |
commit | 74fb14adacb624c4ac7f82e26ee456dc4e192181 (patch) | |
tree | 491556b2f7eec29e81cb552e9a52cc6f1bae501a /packet-ppp.c | |
parent | 4ed98dbd8467a7cea3c3d642bb8ea45aa0167b62 (diff) | |
download | wireshark-74fb14adacb624c4ac7f82e26ee456dc4e192181.tar.gz wireshark-74fb14adacb624c4ac7f82e26ee456dc4e192181.tar.bz2 wireshark-74fb14adacb624c4ac7f82e26ee456dc4e192181.zip |
Patch from Motonori Shindo, adding
1) Shiva PAP (SPAP) and Extensible Authentication Protocol (EAP)
2) CBCP negotiation in LCP Callback Operation Field
to the PPP dissector.
svn path=/trunk/; revision=3826
Diffstat (limited to 'packet-ppp.c')
-rw-r--r-- | packet-ppp.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/packet-ppp.c b/packet-ppp.c index 12bdcebde5..4068b6ba42 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.68 2001/06/18 02:17:50 guy Exp $ + * $Id: packet-ppp.c,v 1.69 2001/08/05 10:09:38 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -122,7 +122,9 @@ static const value_string ppp_vals[] = { {PPP_LCP, "Link Control Protocol" }, {PPP_PAP, "Password Authentication Protocol" }, {PPP_LQR, "Link Quality Report protocol" }, + {PPP_SPAP, "Shiva Password Authentication Protocol" }, {PPP_CHAP, "Cryptographic Handshake Auth. Protocol" }, + {PPP_EAP, "Extensible Authentication Protocol" }, {PPP_CBCP, "Callback Control Protocol" }, {0, NULL } }; @@ -829,6 +831,8 @@ static const value_string callback_op_vals[] = { {2, "Message is location identifier" }, {3, "Message is E.164" }, {4, "Message is distinguished name" }, + {5, "unassinged"}, + {6, "Location is determined during CBCP negotiation" }, {0, NULL } }; |