aboutsummaryrefslogtreecommitdiffstats
path: root/capture-pcap-util.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2008-12-21 23:22:12 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2008-12-21 23:22:12 +0000
commitfd4044b5c52f7bb52d0be686b3c71ac7c13e7452 (patch)
treef00a2c2ae7e82a836604c63a2fd177bc53510fa1 /capture-pcap-util.h
parent60df596edbc60d27dc548bc783ead3f67912a68a (diff)
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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27074 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'capture-pcap-util.h')
-rw-r--r--capture-pcap-util.h4
1 files changed, 0 insertions, 4 deletions
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
}