[PROTO] Increase SDU buffer 8k->16k (#2008)

This commit is contained in:
Sukchan Lee
2023-01-21 12:58:43 +09:00
parent df4c83372d
commit ff261681c0
9 changed files with 40 additions and 26 deletions

View File

@@ -425,10 +425,10 @@ int ogs_app_context_parse_config(void)
const char *v = ogs_yaml_iter_value(&pool_iter);
if (v)
self.pool.defconfig.cluster_2048_pool = atoi(v);
} else if (!strcmp(pool_key, "8192")) {
} else if (!strcmp(pool_key, "16384")) {
const char *v = ogs_yaml_iter_value(&pool_iter);
if (v)
self.pool.defconfig.cluster_8192_pool = atoi(v);
self.pool.defconfig.cluster_16384_pool = atoi(v);
} else if (!strcmp(pool_key, "big")) {
const char *v = ogs_yaml_iter_value(&pool_iter);
if (v)