aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/file.c
diff options
context:
space:
mode:
authorMike Hall <mike@hallzone.net>2000-08-08 22:16:42 +0000
committerMike Hall <mike@hallzone.net>2000-08-08 22:16:42 +0000
commitc83d80de36c3786b4c77183fb82a7434c3399b0c (patch)
treebec8097627edb6fde3f0685ddd686d2d98721992 /wiretap/file.c
parent7520ec53b628b5cba080b618454c4744243097f7 (diff)
Added wiretap support to read the Cisco Secure Intrusion Detection System IPLog format.
svn path=/trunk/; revision=2231
Diffstat (limited to 'wiretap/file.c')
-rw-r--r--wiretap/file.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/wiretap/file.c b/wiretap/file.c
index 44af7b6139..d37d48172a 100644
--- a/wiretap/file.c
+++ b/wiretap/file.c
@@ -1,6 +1,6 @@
/* file.c
*
- * $Id: file.c,v 1.58 2000/07/31 04:48:54 guy Exp $
+ * $Id: file.c,v 1.59 2000/08/08 22:16:42 mhall Exp $
*
* Wiretap Library
* Copyright (c) 1998 by Gilbert Ramirez <gram@xiexie.org>
@@ -50,6 +50,7 @@
#include "netxray.h"
#include "toshiba.h"
#include "i4btrace.h"
+#include "csids.h"
/* The open_file_* routines should return:
*
@@ -94,6 +95,7 @@ static int (*open_routines[])(wtap *, int *) = {
ascend_open,
toshiba_open,
i4btrace_open,
+ csids_open,
};
#define N_FILE_TYPES (sizeof open_routines / sizeof open_routines[0])
@@ -322,6 +324,10 @@ const static struct file_type_info {
{ "I4B ISDN trace", NULL,
NULL, NULL },
+ /* WTAP_FILE_CSIDS */
+ { "CSIDS IPLog", NULL,
+ NULL, NULL },
+
};
/* Name that should be somewhat descriptive. */