From b9fa92532328daad84766753422e8a21fd474e6f Mon Sep 17 00:00:00 2001 From: Michal Sekletar Date: Mon, 29 Sep 2014 08:37:25 +0200 Subject: [PATCH 3/4] pcap-linux: apparently ctc interfaces on s390 has ethernet DLT --- pcap-linux.c | 4 ++++ 1 file changed, 4 insertions(+) Index: libpcap-1.10.5/pcap-linux.c =================================================================== --- libpcap-1.10.5.orig/pcap-linux.c +++ libpcap-1.10.5/pcap-linux.c @@ -2530,6 +2530,10 @@ setup_socket(pcap_t *handle, int is_any_ handle->linktype = DLT_LINUX_SLL; } + /* Hack to make things work on s390 ctc interfaces */ + if (strncmp("ctc", device, 3) == 0) + handle->linktype = DLT_EN10MB; + handlep->ifindex = iface_get_id(sock_fd, device, handle->errbuf); if (handlep->ifindex == -1) {