Index: libpcap.c
===================================================================
RCS file: /cvsroot/ethereal/wiretap/libpcap.c,v
retrieving revision 1.81
diff -u -6 -r1.81 libpcap.c
--- libpcap.c	2002/08/07 06:59:49	1.81
+++ libpcap.c	2002/10/10 22:14:56
@@ -236,12 +236,13 @@
 	{ 117,		WTAP_ENCAP_PFLOG },
 
 	{ 118,		WTAP_ENCAP_CISCO_IOS },
 	{ 119,		WTAP_ENCAP_PRISM_HEADER }, /* Prism monitor mode hdr */
 	{ 121,		WTAP_ENCAP_HHDLC },	/* HiPath HDLC */
 	{ 123,		WTAP_ENCAP_ATM_SNIFFER }, /* SunATM */
+	{ 124,		WTAP_ENCAP_TZSP }, /* Tazmen Sniffer Protocol */
 
 	/*
 	 * The following are entries for libpcap type values that have
 	 * different meanings on different OSes.
 	 *
 	 * We put these *after* the entries for the platform-independent
Index: wtap.c
===================================================================
RCS file: /cvsroot/ethereal/wiretap/wtap.c,v
retrieving revision 1.70
diff -u -6 -r1.70 wtap.c
--- wtap.c	2002/08/06 05:40:47	1.70
+++ wtap.c	2002/10/10 22:14:57
@@ -144,13 +144,17 @@
 	{ "HiPath HDLC", "hhdlc" },
 
 	/* WTAP_ENCAP_DOCSIS */
 	{ "Data Over Cable Service Interface Specification", "docsis" },
 
 	/* WTAP_ENCAP_COSINE */
-	{ "CoSine L2 debug log", "cosine" },
+	{ "CoSine L2 debug log", "cosine" },
+
+	/* WTAP_ENCAP_TZSP */
+	{ "Tazmen sniffer protocol", "tzsp" },
+
 };
 
 /* Name that should be somewhat descriptive. */
 const char
 *wtap_encap_string(int encap)
 {
Index: wtap.h
===================================================================
RCS file: /cvsroot/ethereal/wiretap/wtap.h,v
retrieving revision 1.121
diff -u -6 -r1.121 wtap.h
--- wtap.h	2002/08/16 00:41:39	1.121
+++ wtap.h	2002/10/10 22:14:58
@@ -115,16 +115,17 @@
 #define WTAP_ENCAP_CISCO_IOS			23
 #define WTAP_ENCAP_LOCALTALK			24
 #define WTAP_ENCAP_PRISM_HEADER			25
 #define WTAP_ENCAP_PFLOG			26
 #define WTAP_ENCAP_HHDLC			27
 #define WTAP_ENCAP_DOCSIS			28
-#define WTAP_ENCAP_COSINE			29
+#define WTAP_ENCAP_COSINE			29
+#define WTAP_ENCAP_TZSP				30
 
 /* last WTAP_ENCAP_ value + 1 */
-#define WTAP_NUM_ENCAP_TYPES			30
+#define WTAP_NUM_ENCAP_TYPES			31
 
 /* File types that can be read by wiretap.
    We support writing some many of these file types, too, so we
    distinguish between different versions of them. */
 #define WTAP_FILE_UNKNOWN			0
 #define WTAP_FILE_WTAP				1
