From b688973cf98f46308aabe5dad8fc560010fb9c62 Mon Sep 17 00:00:00 2001 From: YuQing <384681@qq.com> Date: Thu, 9 Oct 2025 14:01:32 +0800 Subject: [PATCH] change use_send_zc's default value to true --- src/sf_global.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sf_global.c b/src/sf_global.c index 2097e0e..9f5c174 100644 --- a/src/sf_global.c +++ b/src/sf_global.c @@ -717,7 +717,7 @@ int sf_load_context_from_config_ex(SFContext *sf_context, } global_use_send_zc = iniGetBoolValue(NULL, "use_send_zc", - config->ini_ctx.context, false); + config->ini_ctx.context, true); if (config->ini_ctx.section_name == NULL) { use_send_zc = global_use_send_zc; } else {