加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0003-pcap-linux-apparently-ctc-interfaces-on-s390-has-eth.patch 753 Bytes
一键复制 编辑 原始数据 按行查看 历史
dowzyx 提交于 2021-09-16 14:28 . upgrade to 1.10.1
From b9fa92532328daad84766753422e8a21fd474e6f Mon Sep 17 00:00:00 2001
From: Michal Sekletar <msekleta@redhat.com>
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(+)
diff --git a/pcap-linux.c b/pcap-linux.c
index 878f27f..6917203 100644
--- a/pcap-linux.c
+++ b/pcap-linux.c
@@ -2474,6 +2474,10 @@ activate_pf_packet(pcap_t *handle, int is_any_device)
}
}
+ /* 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) {
--
2.23.0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化