aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/ngsniffer.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>1998-11-12 06:01:27 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>1998-11-12 06:01:27 +0000
commitc0f191e9e0c2d49564e42a23cfcd6a391569892c (patch)
treeb5635327a52f09fe041a808311d39e8bde8b3def /wiretap/ngsniffer.c
parentfcb4c78a6a01d22f0db9d6de870342511030cb01 (diff)
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/ngsniffer.c')
-rw-r--r--wiretap/ngsniffer.c67
1 files changed, 66 insertions, 1 deletions
diff --git a/wiretap/ngsniffer.c b/wiretap/ngsniffer.c
index dbe6bd57cf..9c292cb5ea 100644
--- a/wiretap/ngsniffer.c
+++ b/wiretap/ngsniffer.c
@@ -1,6 +1,71 @@
+/* ngsniffer.c
+ *
+ * $Id: ngsniffer.c,v 1.2 1998/11/12 06:01:24 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.
+ *
+ */
#include "wtap.h"
#include "ngsniffer.h"
+/* Returns WTAP_FILE_NGSNIFFER on success, WTAP_FILE_UNKNOWN on failure */
+int ngsniffer_open(wtap *wth)
+{
+ int bytes_read;
+ char magic[33];
+
+ fseek(wth->fh, 0, SEEK_SET);
+ bytes_read = fread(magic, 1, 32, wth->fh);
+
+ if (bytes_read != 32) {
+ return WTAP_FILE_UNKNOWN;
+ }
+
+ magic[16] = 0;
+
+ if (strcmp(magic, "TRSNIFF data ")) {
+ return WTAP_FILE_UNKNOWN;
+ }
+
+ /* This is a ngsniffer file */
+ wth->frame_number = 0;
+ wth->file_byte_offset = 0x10b;
+ wth->subtype_read = ngsniffer_read;
+
+ /* I think this is link type */
+ if (magic[30] == 0x25) {
+ wth->encapsulation = WTAP_ENCAP_ETHERNET;
+ }
+ else if (magic[30] == 0x24) {
+ wth->encapsulation = WTAP_ENCAP_TR;
+ }
+ else {
+ g_error("The magic byte that I think tells DLT is 0x%02X\n", magic[30]);
+ exit(-1);
+ }
+
+ if (fseek(wth->fh, 0x10b, SEEK_SET) < 0) {
+ return WTAP_FILE_UNKNOWN; /* I should exit(-1) here */
+ }
+ return WTAP_FILE_NGSNIFFER;
+}
+
+/* Read the next packet */
int ngsniffer_read(wtap *wth)
{
struct ngsniffer_hdr frame_hdr;
@@ -17,7 +82,7 @@ int ngsniffer_read(wtap *wth)
frame_hdr.bytes, wth->fh);
if (bytes_read != packet_size) {
- g_error("no good fread for data: %d bytes out of %d read\n",
+ g_error("ngsniffer_read: fread for data: %d bytes out of %d read\n",
bytes_read, packet_size);
return 0;
}