wiretap support for the CAM Inspector file format
[metze/wireshark/wip.git] / wiretap / wtap.h
index 21ecda451162526bab3b7aad54f6140f23ffb902..97be9728194e0b3f122c15b26f651e06de205a6e 100644 (file)
@@ -242,6 +242,7 @@ extern "C" {
 #define WTAP_ENCAP_AX25                         149
 #define WTAP_ENCAP_SCTP                         150
 #define WTAP_ENCAP_INFINIBAND                   151
+#define WTAP_ENCAP_JUNIPER_SVCS                 152
 
 #define WTAP_NUM_ENCAP_TYPES                    wtap_get_num_encap_types()
 
@@ -312,6 +313,7 @@ extern "C" {
 #define WTAP_FILE_MPEG_2_TS                     61
 #define WTAP_FILE_VWR_80211                     62
 #define WTAP_FILE_VWR_ETH                       63
+#define WTAP_FILE_CAMINS                        64
 
 #define WTAP_NUM_FILE_TYPES                     wtap_get_num_file_types()
 
@@ -1392,10 +1394,13 @@ int wtap_register_encap_type(const char* name, const char* short_name);
 #define WTAP_ERR_CANT_SEEK                    -20
     /** An attempt to seek failed, reason unknown */
 
-#define WTAP_ERR_DECOMPRESS                   -21
+#define WTAP_ERR_CANT_SEEK_COMPRESSED         -21
+    /** An attempt to seek on a compressed stream */
+
+#define WTAP_ERR_DECOMPRESS                   -22
     /** Error decompressing */
 
-#define WTAP_ERR_INTERNAL                     -22
+#define WTAP_ERR_INTERNAL                     -23
     /** "Shouldn't happen" internal errors */
 
 #ifdef __cplusplus