aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/netxray.h
diff options
context:
space:
mode:
authorNathan Neulinger <nneul@umr.edu>1999-12-14 01:12:59 +0000
committerNathan Neulinger <nneul@umr.edu>1999-12-14 01:12:59 +0000
commit2ad53e520e40e77469e4be0b1fa3cc66a810515a (patch)
treed4339ce41478187ef3aee0ecbac83996d4b41820 /wiretap/netxray.h
parenta20a427b9e6924574b8950675271148688e272f6 (diff)
downloadwireshark-2ad53e520e40e77469e4be0b1fa3cc66a810515a.tar.gz
wireshark-2ad53e520e40e77469e4be0b1fa3cc66a810515a.tar.bz2
wireshark-2ad53e520e40e77469e4be0b1fa3cc66a810515a.zip
Added support for writing netxray version 1.1 dumps.
It's very basic, and doesn't write out the timestamps currently. It also only handles WTAP_ENCAP_ETHERNET, although it can probably do the others, but I don't have a good way to test them. This code has not yet been tested against a Sniffer Pro, although wiretap can read the files just fine. svn path=/trunk/; revision=1318
Diffstat (limited to 'wiretap/netxray.h')
-rw-r--r--wiretap/netxray.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/wiretap/netxray.h b/wiretap/netxray.h
index a21744b2ff..3e9fb1db42 100644
--- a/wiretap/netxray.h
+++ b/wiretap/netxray.h
@@ -1,6 +1,6 @@
/* netxray.h
*
- * $Id: netxray.h,v 1.2 1999/08/19 05:31:36 guy Exp $
+ * $Id: netxray.h,v 1.3 1999/12/14 01:12:59 nneul Exp $
*
* Wiretap Library
* Copyright (c) 1998 by Gilbert Ramirez <gram@verdict.uthscsa.edu>
@@ -22,3 +22,5 @@
*/
int netxray_open(wtap *wth, int *err);
+gboolean netxray_dump_open_1_1(wtap_dumper *wdh, int *err);
+int netxray_dump_can_write_encap(int filetype, int encap);