summaryrefslogtreecommitdiff
path: root/wiretap/iptrace.h
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>1999-11-18 08:50:37 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>1999-11-18 08:50:37 +0000
commit32e13732c06027d598869eeb5f87807af2095505 (patch)
tree60b0c10b31a277ec35a4f429493a26fdf48a77fe /wiretap/iptrace.h
parentd6a877f3c5538c89e715808ca5e0bd29bcb970ae (diff)
downloadwireshark-32e13732c06027d598869eeb5f87807af2095505.tar.gz
Check in my work so far on enabling the ATM iptrace capability. Not
all packets are recognized yet, but ILMI and Classical IP (LLCMX) are. The ATM iptrace facility uses the ngsniffer_atm_phdr pseudo header so that ethereal doesn't have to worry about yet another psuedo header. svn path=/trunk/; revision=1057
Diffstat (limited to 'wiretap/iptrace.h')
-rw-r--r--wiretap/iptrace.h17
1 files changed, 1 insertions, 16 deletions
diff --git a/wiretap/iptrace.h b/wiretap/iptrace.h
index e3d5dc7374..d47f91f8c5 100644
--- a/wiretap/iptrace.h
+++ b/wiretap/iptrace.h
@@ -1,6 +1,6 @@
/* iptrace.h
*
- * $Id: iptrace.h,v 1.2 1999/08/19 05:31:38 guy Exp $
+ * $Id: iptrace.h,v 1.3 1999/11/18 08:50:37 gram Exp $
*
* Wiretap Library
* Copyright (c) 1998 by Gilbert Ramirez <gram@verdict.uthscsa.edu>
@@ -20,20 +20,5 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
-
-/* the iptrace 2.0 packet header, as guessed */
-#if 0
-struct iptrace_pkt_hdr {
- guint16 unknown;
- guint16 pkt_length; /* packet length + 32 */
- guint32 tv_sec;
- char if_name[4]; /* not null-terminated */
- guint16 if_num;
- char if_desc[12]; /* interface description. why? */
- guint32 tv_sec;
- guint32 tv_usec;
-};
-#endif
-
int iptrace_open(wtap *wth, int *err);