aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/pcap-common.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2012-09-14 20:23:18 +0000
committerGerald Combs <gerald@wireshark.org>2012-09-14 20:23:18 +0000
commit762e5ac93f08912c6daae6e83033b01332e914ab (patch)
treeb7782b13f2ffe300f89dd3144a341b33afd4c363 /wiretap/pcap-common.c
parent670dff46e451ca0e701bdafb5c13d75c42b261f6 (diff)
Create a common libui using CMake similar to what we do with Autotools.
Move the GTK+ text import code to the common UI directory. Create wtap_encap_requires_phdr() from code in file_import_dlg.c. svn path=/trunk/; revision=44904
Diffstat (limited to 'wiretap/pcap-common.c')
-rw-r--r--wiretap/pcap-common.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/wiretap/pcap-common.c b/wiretap/pcap-common.c
index f1655020d6..1b52422f01 100644
--- a/wiretap/pcap-common.c
+++ b/wiretap/pcap-common.c
@@ -660,6 +660,25 @@ wtap_wtap_encap_to_pcap_encap(int encap)
return -1;
}
+gboolean
+wtap_encap_requires_phdr(int encap) {
+ if (
+ (encap == WTAP_ENCAP_ATM_PDUS) ||
+ (encap == WTAP_ENCAP_IRDA) ||
+ (encap == WTAP_ENCAP_MTP2_WITH_PHDR) ||
+ (encap == WTAP_ENCAP_LINUX_LAPD) ||
+ (encap == WTAP_ENCAP_SITA) ||
+ (encap == WTAP_ENCAP_ERF) ||
+ (encap == WTAP_ENCAP_I2C) ||
+ (encap == WTAP_ENCAP_BLUETOOTH_H4_WITH_PHDR) ||
+ (encap == WTAP_ENCAP_PPP_WITH_PHDR)
+ ) {
+ return TRUE;
+ }
+ return FALSE;
+}
+
+
/*
* Various pseudo-headers that appear at the beginning of packet data.
*