From 85223ceac91a8aeeab801ccac09cea6d56ce9c6b Mon Sep 17 00:00:00 2001 From: Kekma <136650032+KekmaTime@users.noreply.github.com> Date: Sun, 24 Mar 2024 16:45:18 +0530 Subject: [PATCH] updated size to u8 Co-authored-by: neon_arch --- src/config/parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/parser.rs b/src/config/parser.rs index e872884..8dd8a89 100644 --- a/src/config/parser.rs +++ b/src/config/parser.rs @@ -43,7 +43,7 @@ pub struct Config { /// search results. pub safe_search: u8, /// It stores the TCP connection keepalive duration in seconds. - pub tcp_connection_keepalive: u64, + pub tcp_connection_keepalive: u8, } impl Config {