aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-03-27 11:16:54 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-03-27 11:16:54 +0000
commitc622693efb76eb9d3e3dbae1ac9ea29dcd19077e (patch)
tree3e48eff9717efd26d58f1d555c1df4338d2a4fe2 /wiretap
parent467ca9d7697faa605078afc49a0e6d6877773f7b (diff)
From Mark C. Brown: add support for iether (dual-port gigabit) cards in
nettl files. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10501 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'wiretap')
-rw-r--r--wiretap/nettl.c3
-rw-r--r--wiretap/nettl.h3
2 files changed, 4 insertions, 2 deletions
diff --git a/wiretap/nettl.c b/wiretap/nettl.c
index 32cc110731..c405aedf2c 100644
--- a/wiretap/nettl.c
+++ b/wiretap/nettl.c
@@ -1,6 +1,6 @@
/* nettl.c
*
- * $Id: nettl.c,v 1.34 2004/01/25 21:55:16 guy Exp $
+ * $Id: nettl.c,v 1.35 2004/03/27 11:16:53 guy Exp $
*
* Wiretap Library
* Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
@@ -279,6 +279,7 @@ nettl_read_rec_header(wtap *wth, FILE_T fh, struct wtap_pkthdr *phdr,
case NETTL_SUBSYS_BTLAN :
case NETTL_SUBSYS_INTL100 :
case NETTL_SUBSYS_IGELAN :
+ case NETTL_SUBSYS_IETHER :
case NETTL_SUBSYS_NS_LS_IP :
case NETTL_SUBSYS_NS_LS_LOOPBACK :
case NETTL_SUBSYS_NS_LS_TCP :
diff --git a/wiretap/nettl.h b/wiretap/nettl.h
index acad0ce7ce..f8d4e1fa5e 100644
--- a/wiretap/nettl.h
+++ b/wiretap/nettl.h
@@ -1,6 +1,6 @@
/* nettl.h
*
- * $Id: nettl.h,v 1.10 2004/01/25 21:55:16 guy Exp $
+ * $Id: nettl.h,v 1.11 2004/03/27 11:16:54 guy Exp $
*
* Wiretap Library
* Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
@@ -78,6 +78,7 @@
#define NETTL_SUBSYS_BTLAN 0xD2
#define NETTL_SUBSYS_INTL100 0xE9
#define NETTL_SUBSYS_IGELAN 0xFC
+#define NETTL_SUBSYS_IETHER 0xFD
int nettl_open(wtap *wth, int *err, gchar **err_info);