aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/iptrace.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-01-10 04:04:42 +0000
committerGuy Harris <guy@alum.mit.edu>2003-01-10 04:04:42 +0000
commit50e696df812a10e47bb6c2b132728b826ca82a60 (patch)
tree7e5ca309b08cac82b6faa42f0296a645c4273940 /wiretap/iptrace.c
parent6b49b2475cae484188cf4d3b216c5271183d157c (diff)
The Sniffer file formats include a file to identify raw cells; export
that flag in the ATM pseudo-header, and use it to determine whether a frame is a raw cell or a reassembled frame, rather than using the AAL, as you can have raw AAL5 cells in a capture. svn path=/trunk/; revision=6889
Diffstat (limited to 'wiretap/iptrace.c')
-rw-r--r--wiretap/iptrace.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/wiretap/iptrace.c b/wiretap/iptrace.c
index 9bb1a7aef7..8f5d2a9775 100644
--- a/wiretap/iptrace.c
+++ b/wiretap/iptrace.c
@@ -1,6 +1,6 @@
/* iptrace.c
*
- * $Id: iptrace.c,v 1.46 2003/01/03 06:45:45 guy Exp $
+ * $Id: iptrace.c,v 1.47 2003/01/10 04:04:41 guy Exp $
*
* Wiretap Library
* Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
@@ -531,6 +531,7 @@ get_atm_pseudo_header(const guint8 *pd, guint32 len,
atm_guess_traffic_type(pd, len, pseudo_header);
/* We don't have this information */
+ pseudo_header->atm.flags = 0;
pseudo_header->atm.cells = 0;
pseudo_header->atm.aal5t_u2u = 0;
pseudo_header->atm.aal5t_len = 0;