From 44f8cae6ab2dbcd4a0f79476dbdec084788be9f4 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sun, 21 Dec 2008 23:22:12 +0000 Subject: If we don't have any of the pcap_datalink_XXX_to_YYY routines, substitute our own (I wrote them all, so I can steal them from the BSD-licensed libpcap if I want :-)). This means that linktype_name_to_val() and linktype_val_to_name() are always available, and we don't need to #ifdef use of them. Use pcap_datalink_val_to_description() to get the description for a particular DLT_ value, rather than mapping the DLT_ value to a WTAP_ENCAP_ value and getting the description for the latter. svn path=/trunk/; revision=27074 --- capture-pcap-util.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'capture-pcap-util.h') diff --git a/capture-pcap-util.h b/capture-pcap-util.h index 6591711be2..9d91387b26 100644 --- a/capture-pcap-util.h +++ b/capture-pcap-util.h @@ -100,12 +100,8 @@ int get_pcap_linktype(pcap_t *pch, const char *devname); const char *set_pcap_linktype(pcap_t *pch, char *devname, int dlt); -#ifdef HAVE_PCAP_DATALINK_VAL_TO_NAME const char *linktype_val_to_name(int dlt); -#endif -#ifdef HAVE_PCAP_DATALINK_NAME_TO_VAL int linktype_name_to_val(const char *linktype); -#endif #ifdef __cplusplus } -- cgit v1.2.3