aboutsummaryrefslogtreecommitdiffstats
path: root/proto.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>1999-08-20 06:55:20 +0000
committerGuy Harris <guy@alum.mit.edu>1999-08-20 06:55:20 +0000
commita033390918ea00a11203f5ef869e14d0609e6b6f (patch)
treea3570575a12e5fb9a383c93391a544e5a1101233 /proto.c
parent57198bc28f3fd6e6f885f9fd2f0849ae937497a4 (diff)
Add support for reading Full Frontal ATM from an ATM Sniffer capture
file, instead of throwing out all but LANE or RFC 1483 data frames and pretending that the former are just Ethernet or Token-Ring frames. Add some level of decoding for ATM LANE, but not all of it; the rest, including decoding non-LANE frames, is left as an exercise for somebody who has captures they want to decode, an interest in decoding them, ATM expertise, and time.... svn path=/trunk/; revision=523
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 c8e7a51cab..d185bf3943 100644
--- a/proto.c
+++ b/proto.c
@@ -1,7 +1,7 @@
/* proto.c
* Routines for protocol tree
*
- * $Id: proto.c,v 1.15 1999/08/14 01:26:38 gram Exp $
+ * $Id: proto.c,v 1.16 1999/08/20 06:55:06 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -89,6 +89,7 @@ void dfilter_yacc_init(void);
void proto_register_aarp(void);
void proto_register_arp(void);
void proto_register_atalk(void);
+void proto_register_atm(void);
void proto_register_bootp(void);
void proto_register_cdp(void);
void proto_register_data(void);
@@ -185,6 +186,7 @@ proto_init(void)
proto_register_aarp();
proto_register_arp();
proto_register_atalk();
+ proto_register_atm();
proto_register_bootp();
proto_register_cdp();
proto_register_data();