summaryrefslogtreecommitdiff
path: root/wiretap/wtap-int.h
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2005-06-10 16:01:16 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2005-06-10 16:01:16 +0000
commite0dc2b2a9a2bcb48a556d920357c81379f5fad9c (patch)
treecf65b6b113548c512bd614c87967bf15dfb40582 /wiretap/wtap-int.h
parent428b2d8bbe9de41061e92e9afc62dc121645f72c (diff)
downloadwireshark-e0dc2b2a9a2bcb48a556d920357c81379f5fad9c.tar.gz
Initial checkin of the 32 bit tektronix k12 binary format (rf5)
There is still much to do, but at the very least it can import files allowing the user to choose which protocols handle the diferent sources. svn path=/trunk/; revision=14606
Diffstat (limited to 'wiretap/wtap-int.h')
-rw-r--r--wiretap/wtap-int.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/wiretap/wtap-int.h b/wiretap/wtap-int.h
index 62b2859dff..6d4e4e9331 100644
--- a/wiretap/wtap-int.h
+++ b/wiretap/wtap-int.h
@@ -134,6 +134,8 @@ typedef struct {
gboolean is_ppp;
} erf_t;
+typedef struct _k12_t k12_t;
+
typedef gboolean (*subtype_read_func)(struct wtap*, int*, char**, long*);
typedef gboolean (*subtype_seek_read_func)(struct wtap*, long, union wtap_pseudo_header*,
guint8*, int, int *, char **);
@@ -162,6 +164,7 @@ struct wtap {
etherpeek_t *etherpeek;
airopeek9_t *airopeek9;
erf_t *erf;
+ k12_t *k12;
void *generic;
} capture;