aboutsummaryrefslogtreecommitdiffstats
path: root/proto.c
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>1999-09-11 04:19:26 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>1999-09-11 04:19:26 +0000
commitcb930038458d92f492a11b8023b4f6e7975f0eb1 (patch)
tree003a94ec7d7878aac5ec0377b5731388abde9ffa /proto.c
parent838b64077c544ddc41bd36556fa26e0e423f0432 (diff)
Added support for PPP Multilink Protocol (MP). Modified dissect_ppp_stuff
to recognize and handle protocol field compression. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@651 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'proto.c')
-rw-r--r--proto.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/proto.c b/proto.c
index c381c411b0..f3ceeae515 100644
--- a/proto.c
+++ b/proto.c
@@ -1,7 +1,7 @@
/* proto.c
* Routines for protocol tree
*
- * $Id: proto.c,v 1.20 1999/08/30 15:51:44 gram Exp $
+ * $Id: proto.c,v 1.21 1999/09/11 04:19:26 gerald Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -110,6 +110,7 @@ void proto_register_ipx(void);
void proto_register_isakmp(void);
void proto_register_lapb(void);
void proto_register_llc(void);
+void proto_register_mp(void);
void proto_register_nbipx(void);
void proto_register_nbt(void);
void proto_register_ncp(void);
@@ -212,6 +213,7 @@ proto_init(void)
proto_register_isakmp();
proto_register_lapb();
proto_register_llc();
+ proto_register_mp();
proto_register_nbipx();
proto_register_nbt();
proto_register_ncp();