aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/wtap.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>1999-10-18 01:51:34 +0000
committerGuy Harris <guy@alum.mit.edu>1999-10-18 01:51:34 +0000
commitdbd1955d62538097dcad85350f60f40849402190 (patch)
tree8a47a962a70fa20b6a2bc6460536ebe8f06f4003 /wiretap/wtap.h
parenta0120ff1826a31acfa7f7bd22fb774d2626cac4f (diff)
Olivier Abad's patches to add:
more display filters for X.25; no LCN in X.25 RESTART / DIAGNOSTIC / REGISTRATION packets; support for nettl file format (nettl is a trace tool for HP-UX). For now, it only supports traces for X.25 interfaces (tested with HP-UX 10.20). svn path=/trunk/; revision=879
Diffstat (limited to 'wiretap/wtap.h')
-rw-r--r--wiretap/wtap.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/wiretap/wtap.h b/wiretap/wtap.h
index 5ca5d8edfb..06b78d8f95 100644
--- a/wiretap/wtap.h
+++ b/wiretap/wtap.h
@@ -1,6 +1,6 @@
/* wtap.h
*
- * $Id: wtap.h,v 1.43 1999/10/06 03:29:36 guy Exp $
+ * $Id: wtap.h,v 1.44 1999/10/18 01:51:33 guy Exp $
*
* Wiretap Library
* Copyright (c) 1998 by Gilbert Ramirez <gram@verdict.uthscsa.edu>
@@ -93,7 +93,7 @@
#define WTAP_ENCAP_ASCEND 14
/* last WTAP_ENCAP_ value + 1 */
-#define WTAP_NUM_ENCAP_TYPES 15
+#define WTAP_NUM_ENCAP_TYPES 16
/* File types that can be read by wiretap.
We may eventually support writing some or all of these file types,
@@ -112,6 +112,7 @@
#define WTAP_FILE_NETXRAY_2_001 12
#define WTAP_FILE_RADCOM 13
#define WTAP_FILE_ASCEND 14
+#define WTAP_FILE_NETTL 15
/*
* Maximum packet size we'll support.
@@ -150,6 +151,10 @@ typedef struct {
typedef struct {
time_t start;
+} nettl_t;
+
+typedef struct {
+ time_t start;
} lanalyzer_t;
typedef struct {
@@ -305,6 +310,7 @@ typedef struct wtap {
lanalyzer_t *lanalyzer;
ngsniffer_t *ngsniffer;
radcom_t *radcom;
+ nettl_t *nettl;
netmon_t *netmon;
netxray_t *netxray;
ascend_t *ascend;