加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0176-CFG-fix-multicast-IP-assert-error.patch 808 Bytes
一键复制 编辑 原始数据 按行查看 历史
yinbin6 提交于 2024-05-09 10:54 . sync CFG:fix multicast IP assert error
From f9407c8871223cef6dfbc66afb89a3b1b13b811a Mon Sep 17 00:00:00 2001
From: yinbin6 <yinbin8@huawei.com>
Date: Wed, 8 May 2024 16:32:44 +0800
Subject: [PATCH] CFG:fix multicast IP assert error
---
src/lstack/core/lstack_cfg.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/lstack/core/lstack_cfg.c b/src/lstack/core/lstack_cfg.c
index 7967bb7..9efdbaa 100644
--- a/src/lstack/core/lstack_cfg.c
+++ b/src/lstack/core/lstack_cfg.c
@@ -245,7 +245,7 @@ static int32_t parse_host_addr(void)
return -EINVAL;
}
- if (IN_MULTICAST(g_config_params.host_addr.addr)) {
+ if (IN_MULTICAST(ntohl(g_config_params.host_addr.addr))) {
LSTACK_PRE_LOG(LSTACK_ERR, "cfg: host_addr:%s should not be a multicast IP.", value);
return -EINVAL;
}
--
2.33.0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化