summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS4
-rw-r--r--doc/ethereal.pod.template1
-rw-r--r--wiretap/AUTHORS1
-rw-r--r--wiretap/nettl.c47
-rw-r--r--wiretap/nettl.h9
5 files changed, 36 insertions, 26 deletions
diff --git a/AUTHORS b/AUTHORS
index 9f66ac99c7..6daab455bc 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1692,6 +1692,10 @@ Garth Bushell <gbushell [AT] elipsan.com> {
iSNS support
}
+Mark C. Brown <mbrown [AT] nosila.net> {
+ Improvements to code that reads HP-UX nettl files
+}
+
And assorted fixes and enhancements by the people listed above and by:
Pavel Roskin <proski [AT] gnu.org>
diff --git a/doc/ethereal.pod.template b/doc/ethereal.pod.template
index 337e1907e0..5e5fd5d771 100644
--- a/doc/ethereal.pod.template
+++ b/doc/ethereal.pod.template
@@ -1760,6 +1760,7 @@ B<http://www.ethereal.com>.
Tony Schene <Schene_Tony [AT] emc.com>
Matthijs Melchior <mmelchior [AT] xs4all.nl>
Garth Bushell <gbushell [AT] elipsan.com>
+ Mark C. Brown <mbrown [AT] nosila.net>
Pavel Roskin <proski [AT] gnu.org>
Georgi Guninski <guninski [AT] guninski.com>
Jason Copenhaver <jcopenha [AT] typedef.org>
diff --git a/wiretap/AUTHORS b/wiretap/AUTHORS
index 1edba626c1..764a51978a 100644
--- a/wiretap/AUTHORS
+++ b/wiretap/AUTHORS
@@ -15,3 +15,4 @@ Tom Nisbet <Tnisbet[AT]VisualNetworks.com>
Ronnie Sahlberg <sahlberg[AT]optushome.com.au>
Motonori Shindo <mshindo[AT]mshindo.net>
Markus Steinmann <ms[AT]seh.de>
+Mark C. Brown <mbrown[AT]nosila.net>
diff --git a/wiretap/nettl.c b/wiretap/nettl.c
index 4e6a3a2f72..0096b98a3a 100644
--- a/wiretap/nettl.c
+++ b/wiretap/nettl.c
@@ -1,6 +1,6 @@
/* nettl.c
*
- * $Id: nettl.c,v 1.31 2002/08/28 20:30:45 jmayer Exp $
+ * $Id: nettl.c,v 1.32 2003/05/05 01:01:36 guy Exp $
*
* Wiretap Library
* Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
@@ -44,8 +44,8 @@ struct nettlrec_sx25l2_hdr {
guint8 xxa[8];
guint8 from_dce;
guint8 xxb[55];
+ guint8 caplen[2];
guint8 length[2];
- guint8 length2[2]; /* don't know which one is captured length / real length */
guint8 xxc[4];
guint8 sec[4];
guint8 usec[4];
@@ -56,8 +56,8 @@ struct nettlrec_sx25l2_hdr {
/* This also works for BASE100 and GSC100BT */
struct nettlrec_ns_ls_ip_hdr {
guint8 xxa[28];
+ guint8 caplen[4];
guint8 length[4];
- guint8 length2[4]; /* don't know which one is captured length / real length */
guint8 sec[4];
guint8 usec[4];
guint8 xxb[16];
@@ -105,20 +105,20 @@ The first header seems to be
The header for 100baseT seems to be
0-3 unknown
- 4-5 length1 these are probably total/captured len. unknown which.
- 6-7 length2
+ 4-5 captured length
+ 6-7 actual length
8-11 unknown
12-15 secs
- 16-19 100 x nsec
+ 16-19 usecs
20-23 unknown
*/
struct nettlrec_ns_ls_drv_eth_hdr {
guint8 xxa[4];
- guint8 length[2];
- guint8 length2[2];
+ guint8 caplen[2];
+ guint8 length[2];
guint8 xxb[4];
guint8 sec[4];
- guint8 cnsec[4]; /* unit of 100 nsec */
+ guint8 usec[4];
guint8 xxc[4];
};
@@ -267,13 +267,19 @@ nettl_read_rec_header(wtap *wth, FILE_T fh, struct wtap_pkthdr *phdr,
offset += 4;
switch (encap[3]) {
+ case NETTL_SUBSYS_LAN100 :
case NETTL_SUBSYS_BASE100 :
case NETTL_SUBSYS_GSC100BT :
+ case NETTL_SUBSYS_PCI100BT :
+ case NETTL_SUBSYS_SPP100BT :
+ case NETTL_SUBSYS_GELAN :
+ case NETTL_SUBSYS_BTLAN :
+ case NETTL_SUBSYS_INTL100 :
+ case NETTL_SUBSYS_IGELAN :
case NETTL_SUBSYS_NS_LS_IP :
case NETTL_SUBSYS_NS_LS_LOOPBACK :
case NETTL_SUBSYS_NS_LS_TCP :
case NETTL_SUBSYS_NS_LS_UDP :
- case 0xb9: /* XXX unknown encapsulation name */
case NETTL_SUBSYS_NS_LS_ICMP :
if( (encap[3] == NETTL_SUBSYS_NS_LS_IP)
|| (encap[3] == NETTL_SUBSYS_NS_LS_LOOPBACK)
@@ -320,16 +326,12 @@ nettl_read_rec_header(wtap *wth, FILE_T fh, struct wtap_pkthdr *phdr,
length = pntohl(&ip_hdr.length);
if (length <= 0) return 0;
phdr->len = length;
+ length = pntohl(&ip_hdr.caplen);
phdr->caplen = length;
phdr->ts.tv_sec = pntohl(&ip_hdr.sec);
- /* this filed is in units of 0.1 us for HPUX 11 */
- if (wth->capture.nettl->is_hpux_11) {
- phdr->ts.tv_usec = pntohl(&ip_hdr.usec)/10;
- } else {
- phdr->ts.tv_usec = pntohl(&ip_hdr.usec);
- }
+ phdr->ts.tv_usec = pntohl(&ip_hdr.usec);
break;
case NETTL_SUBSYS_NS_LS_DRIVER :
bytes_read = file_read(&ip_hdr, 1, sizeof ip_hdr, fh);
@@ -362,7 +364,7 @@ nettl_read_rec_header(wtap *wth, FILE_T fh, struct wtap_pkthdr *phdr,
offset += 4;
}
- /* XXX we dont know how to identify this as ehternet frames, so
+ /* XXX we dont know how to identify this as ethernet frames, so
we assumes everything is. We will crash and burn for anything else */
/* for encapsulated 100baseT we do this */
phdr->pkt_encap = WTAP_ENCAP_ETHERNET;
@@ -379,19 +381,14 @@ nettl_read_rec_header(wtap *wth, FILE_T fh, struct wtap_pkthdr *phdr,
}
offset += sizeof drv_eth_hdr;
- length = pntohl(&ip_hdr.length);
+ length = pntohs(&drv_eth_hdr.length);
if (length <= 0) return 0;
phdr->len = length;
+ length = pntohs(&drv_eth_hdr.caplen);
phdr->caplen = length;
-
phdr->ts.tv_sec = pntohl(&ip_hdr.sec);
- /* this filed is in units of 0.1 us for HPUX 11 */
- if (wth->capture.nettl->is_hpux_11) {
- phdr->ts.tv_usec = pntohl(&ip_hdr.usec)/10;
- } else {
- phdr->ts.tv_usec = pntohl(&ip_hdr.usec);
- }
+ phdr->ts.tv_usec = pntohl(&ip_hdr.usec);
break;
case NETTL_SUBSYS_SX25L2 :
phdr->pkt_encap = WTAP_ENCAP_LAPB;
diff --git a/wiretap/nettl.h b/wiretap/nettl.h
index 13ba71a76c..2202fa1fe2 100644
--- a/wiretap/nettl.h
+++ b/wiretap/nettl.h
@@ -1,6 +1,6 @@
/* nettl.h
*
- * $Id: nettl.h,v 1.8 2002/08/28 20:30:45 jmayer Exp $
+ * $Id: nettl.h,v 1.9 2003/05/05 01:01:36 guy Exp $
*
* Wiretap Library
* Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
@@ -69,8 +69,15 @@
#define NETTL_SUBSYS_EM 0x7C
/* Ethernet cards */
+#define NETTL_SUBSYS_LAN100 0xA4
#define NETTL_SUBSYS_BASE100 0xAD
#define NETTL_SUBSYS_GSC100BT 0xB2
+#define NETTL_SUBSYS_PCI100BT 0xB3
+#define NETTL_SUBSYS_SPP100BT 0xB4
+#define NETTL_SUBSYS_GELAN 0xB9
+#define NETTL_SUBSYS_BTLAN 0xD2
+#define NETTL_SUBSYS_INTL100 0xE9
+#define NETTL_SUBSYS_IGELAN 0xFC
int nettl_open(wtap *wth, int *err);