diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1998-11-12 06:01:27 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1998-11-12 06:01:27 +0000 |
commit | c0f191e9e0c2d49564e42a23cfcd6a391569892c (patch) | |
tree | b5635327a52f09fe041a808311d39e8bde8b3def /wiretap/lanalyzer.h | |
parent | fcb4c78a6a01d22f0db9d6de870342511030cb01 (diff) | |
download | wireshark-c0f191e9e0c2d49564e42a23cfcd6a391569892c.tar.gz wireshark-c0f191e9e0c2d49564e42a23cfcd6a391569892c.tar.bz2 wireshark-c0f191e9e0c2d49564e42a23cfcd6a391569892c.zip |
I added the LANalzyer file format to wiretap. I cleaned up some code in the
wiretap functions to be more generic and therefore allow an easier integration
of more packet-capture file types. I also put in all the GPL copyrights in the
wiretap code.
svn path=/trunk/; revision=83
Diffstat (limited to 'wiretap/lanalyzer.h')
-rw-r--r-- | wiretap/lanalyzer.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/wiretap/lanalyzer.h b/wiretap/lanalyzer.h new file mode 100644 index 0000000000..3efd992ba1 --- /dev/null +++ b/wiretap/lanalyzer.h @@ -0,0 +1,27 @@ +/* lanalyzer.h + * + * $Id: lanalyzer.h,v 1.1 1998/11/12 06:01:23 gram Exp $ + * + * Wiretap Library + * Copyright (c) 1998 by Gilbert Ramirez <gram@verdict.uthscsa.edu> + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * + */ + + + +int lanalyzer_open(wtap *wth); +int lanalyzer_read(wtap *wth); |