1 Star 0 Fork 32

hantwofish/gazelle_1

forked from src-openEuler/gazelle 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0274-slove-compile-err-when-GAZELLE_TCP_REUSE_IPPORT-is-o.patch 1.60 KB
一键复制 编辑 原始数据 按行查看 历史
From d64a161fb935b8fbfd69781a5cf891d2cebed2df Mon Sep 17 00:00:00 2001
From: hkk <hankangkang5@huawei.com>
Date: Fri, 25 Oct 2024 16:55:23 +0800
Subject: [PATCH] slove compile err when GAZELLE_TCP_REUSE_IPPORT is off
---
src/lstack/api/lstack_rtw_api.c | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/src/lstack/api/lstack_rtw_api.c b/src/lstack/api/lstack_rtw_api.c
index 7ceff20..8765463 100644
--- a/src/lstack/api/lstack_rtw_api.c
+++ b/src/lstack/api/lstack_rtw_api.c
@@ -233,8 +233,9 @@ static int stack_broadcast_listen(int fd, int backlog)
}
struct protocol_stack_group *stack_group = get_protocol_stack_group();
+#if GAZELLE_TCP_REUSE_IPPORT
int min_conn_stk_idx = get_min_conn_stack(stack_group);
-
+#endif
for (int32_t i = 0; i < stack_group->stack_num; ++i) {
stack = stack_group->stacks[i];
if (get_global_cfg_params()->seperate_send_recv && stack->is_send_thread) {
@@ -249,13 +250,13 @@ static int stack_broadcast_listen(int fd, int backlog)
} else {
clone_fd = fd;
}
-
+#if GAZELLE_TCP_REUSE_IPPORT
if (min_conn_stk_idx == i) {
lwip_get_socket(clone_fd)->conn->is_master_fd = 1;
} else {
lwip_get_socket(clone_fd)->conn->is_master_fd = 0;
}
-
+#endif
ret = rpc_call_listen(&stack->rpc_queue, clone_fd, backlog);
if (ret < 0) {
stack_broadcast_close(fd);
@@ -546,4 +547,4 @@ void rtw_api_init(posix_api_t *api)
api->poll_fn = rtw_poll;
api->select_fn = rtw_select;
-}
\ No newline at end of file
+}
--
2.33.0
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hantwofish/gazelle_1.git
git@gitee.com:hantwofish/gazelle_1.git
hantwofish
gazelle_1
gazelle_1
master

搜索帮助