diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-10-31 17:46:11 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-10-31 17:46:11 +0000 |
commit | 558e714449ea30104c2bb7f35421328125a2a24a (patch) | |
tree | a8d7d038636feee1bb1addd3488aedc7df8716a9 /wiretap/Makefile.am | |
parent | 10fdc90bb0784b067d4e77c73907c6adfa5f5d08 (diff) | |
download | wireshark-558e714449ea30104c2bb7f35421328125a2a24a.tar.gz wireshark-558e714449ea30104c2bb7f35421328125a2a24a.tar.bz2 wireshark-558e714449ea30104c2bb7f35421328125a2a24a.zip |
Add a module to wiretap to be able to read trace files from Toshiba's
line of ISDN routers. Much like the ascend reader, this module reads an
ASCII hex dump of trace data.
Rearranged the order in which wiretap tries trace files, to keep the
ASCII-readers (ascend and toshiba) at the end, and put the binary-readers
(everything else) at the front of the list. If a telnet session of
and ascend trace or toshiba trace were captured near the beginning of
another trace, wiretap might think the trace was ascend or toshiba if it
tried that module first.
Fixed the way wtap_seek_read() selects functions to call. It was using
the encap type instead of the file type. We got lucky because
WTAP_ENCAP_ASCEND == WTAP_FILE_ASCEND
svn path=/trunk/; revision=952
Diffstat (limited to 'wiretap/Makefile.am')
-rw-r--r-- | wiretap/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/wiretap/Makefile.am b/wiretap/Makefile.am index 37a628408e..ae80144818 100644 --- a/wiretap/Makefile.am +++ b/wiretap/Makefile.am @@ -1,7 +1,7 @@ # Makefile.am # Automake file for Wiretap # -# $Id: Makefile.am,v 1.23 1999/10/18 01:51:32 guy Exp $ +# $Id: Makefile.am,v 1.24 1999/10/31 17:46:04 gram Exp $ # # Ethereal - Network traffic analyzer # By Gerald Combs <gerald@zing.org> @@ -58,6 +58,8 @@ libwiretap_a_SOURCES = \ radcom.h \ snoop.c \ snoop.h \ + toshiba.c \ + toshiba.h \ wtap.c \ wtap.h |