aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/file.c
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/file.c
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/file.c')
-rw-r--r--wiretap/file.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/wiretap/file.c b/wiretap/file.c
index 7a24ab3a05..dc95eec2a4 100644
--- a/wiretap/file.c
+++ b/wiretap/file.c
@@ -1,6 +1,6 @@
/* file.c
*
- * $Id: file.c,v 1.25 1999/10/05 07:06:05 guy Exp $
+ * $Id: file.c,v 1.26 1999/10/18 01:51:34 guy Exp $
*
* Wiretap Library
* Copyright (c) 1998 by Gilbert Ramirez <gram@verdict.uthscsa.edu>
@@ -36,6 +36,7 @@
#include "ngsniffer.h"
#include "radcom.h"
#include "ascend.h"
+#include "nettl.h"
#include "libpcap.h"
#include "snoop.h"
#include "iptrace.h"
@@ -68,7 +69,8 @@ static int (*open_routines[])(wtap *, int *) = {
netmon_open,
netxray_open,
radcom_open,
- ascend_open
+ ascend_open,
+ nettl_open
};
int wtap_def_seek_read (FILE *fh, int seek_off, guint8 *pd, int len)