aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/wtap.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2009-06-01 17:23:38 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2009-06-01 17:23:38 +0000
commitc9b492a422329474c2eceb9d1fa7180628b5bb90 (patch)
tree1bd18c5fd4e70b0d274022284c777c8f369e1955 /wiretap/wtap.c
parente1eff63e0285796967bd2f7dfe968e0d3d8c8899 (diff)
From Ravi Kondamuru via bug 3457:
Add support to read citrix netscaler capture file format. From me: - Renamed packet-ns.c to packet-nstrace.c - Rewrote to not use "goto" in netscaler.c - Moved dissecting of coreid svn path=/trunk/; revision=28564
Diffstat (limited to 'wiretap/wtap.c')
-rw-r--r--wiretap/wtap.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/wiretap/wtap.c b/wiretap/wtap.c
index ab20d5b5b5..976dacccdc 100644
--- a/wiretap/wtap.c
+++ b/wiretap/wtap.c
@@ -439,7 +439,14 @@ static struct encap_type_info encap_table_base[] = {
{ "USB packets with Linux header and padding", "usb-linux-mmap" },
/* WTAP_ENCAP_GSM_UM */
- { "GSM Um Interface", "gsm_um" }
+ { "GSM Um Interface", "gsm_um" },
+
+ /* WTAP_ENCAP_NSTRACE_1_0 */
+ { "NetScaler Encapsulation 1.0 of Ethernet", "nstrace10" },
+
+ /* WTAP_ENCAP_NSTRACE_2_0 */
+ { "NetScaler Encapsulation 2.0 of Ethernet", "nstrace20" },
+
};
gint wtap_num_encap_types = sizeof(encap_table_base) / sizeof(struct encap_type_info);