1 Star 0 Fork 49

compile_success/lwip

forked from src-openEuler/lwip 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0079-enable-vlan-define.patch 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
compile_success 提交于 2023-11-03 14:13 . add vlan support
From a7be70b7c210fbe17d4b6a90b8c8a155dd489035 Mon Sep 17 00:00:00 2001
From: compile_success <[email protected]>
Date: Sat, 4 Nov 2023 14:16:06 +0000
Subject: [PATCH] enable vlan define
---
src/include/lwipopts.h | 3 +++
src/netif/ethernet.c | 4 ++++
2 files changed, 7 insertions(+)
diff --git a/src/include/lwipopts.h b/src/include/lwipopts.h
index fdd4f87..a18179e 100644
--- a/src/include/lwipopts.h
+++ b/src/include/lwipopts.h
@@ -261,4 +261,7 @@
*/
#define LWIP_NETIF_LOOPBACK 1
+#define ETHARP_SUPPORT_VLAN 1
+#define LWIP_VLAN_PCP 1
+
#endif /* __LWIPOPTS_H__ */
diff --git a/src/netif/ethernet.c b/src/netif/ethernet.c
index cbe298e..d411892 100644
--- a/src/netif/ethernet.c
+++ b/src/netif/ethernet.c
@@ -321,7 +321,11 @@ ethernet_output(struct netif * netif, struct pbuf * p,
("ethernet_output: sending packet %p\n", (void *)p));
#if CHECKSUM_GEN_IP_HW || CHECKSUM_GEN_TCP_HW
+#if LWIP_VLAN_PCP
+ ethh_cksum_set(p, sizeof(*ethhdr)+SIZEOF_VLAN_HDR);
+#else
ethh_cksum_set(p, sizeof(*ethhdr));
+#endif
#endif
/* send the packet */
--
2.33.0
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/compile_success/lwip.git
[email protected]:compile_success/lwip.git
compile_success
lwip
lwip
master

搜索帮助