代码拉取完成,页面将自动刷新
From a7be70b7c210fbe17d4b6a90b8c8a155dd489035 Mon Sep 17 00:00:00 2001
From: compile_success <980965867@qq.com>
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
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。