diff options
Diffstat (limited to 'capture-pcap-util.c')
-rw-r--r-- | capture-pcap-util.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/capture-pcap-util.c b/capture-pcap-util.c index 48b7989811..fd4d0525a3 100644 --- a/capture-pcap-util.c +++ b/capture-pcap-util.c @@ -560,26 +560,6 @@ free_pcap_linktype_list(GList *linktype_list) g_list_free(linktype_list); } -/* Set the data link type on a pcap. */ -const char * -set_pcap_linktype(pcap_t *pch, char *devname -#ifdef HAVE_PCAP_SET_DATALINK - _U_ -#endif - , int dlt) -{ -#ifdef HAVE_PCAP_SET_DATALINK - if (pcap_set_datalink(pch, dlt) == 0) - return NULL; /* no error */ - return pcap_geterr(pch); -#else - /* Let them set it to the type it is; reject any other request. */ - if (get_pcap_linktype(pch, devname) == dlt) - return NULL; /* no error */ - return "That DLT isn't one of the DLTs supported by this device"; -#endif -} - const char * linktype_val_to_name(int dlt) { |