feat(server): optimize http transport and socket configuration for S3… (#1537)

Co-authored-by: houseme <housemecn@gmail.com>
This commit is contained in:
heihutu
2026-01-17 02:53:24 +08:00
committed by GitHub
parent 2ab6f8c029
commit 76fa86fdc5
5 changed files with 159 additions and 90 deletions
+1 -1
View File
@@ -168,7 +168,7 @@ pub const DEFAULT_OBS_LOG_STDOUT_ENABLED: bool = false;
pub const KI_B: usize = 1024;
/// Constant representing 1 Mebibyte (1024 * 1024 bytes)
/// Default value: 1048576
pub const MI_B: usize = 1024 * 1024;
pub const MI_B: usize = 1024 * KI_B;
#[cfg(test)]
mod tests {