15 lines
547 B
Diff
15 lines
547 B
Diff
diff -up libpcap-1.5.0/pcap-linux.c.s390 libpcap-1.5.0/pcap-linux.c
|
|
--- libpcap-1.5.0/pcap-linux.c.s390 2013-11-08 08:05:02.608387300 +0100
|
|
+++ libpcap-1.5.0/pcap-linux.c 2013-11-08 08:08:49.597405024 +0100
|
|
@@ -3181,6 +3181,10 @@ activate_new(pcap_t *handle)
|
|
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) {
|