diff --git a/src/config/parser.rs b/src/config/parser.rs index dcde182..4494db3 100644 --- a/src/config/parser.rs +++ b/src/config/parser.rs @@ -30,7 +30,7 @@ pub struct Config { pub logging: bool, /// It stores the option to whether enable or disable debug mode. pub debug: bool, - /// It toggles whether to use adaptive TCP windows + /// It toggles whether to use adaptive HTTP windows pub adaptive_window: bool, /// It stores all the engine names that were enabled by the user. pub upstream_search_engines: HashMap, diff --git a/websurfx/config.lua b/websurfx/config.lua index 32b20da..3b6c4ab 100644 --- a/websurfx/config.lua +++ b/websurfx/config.lua @@ -14,7 +14,7 @@ rate_limiter = { number_of_requests = 20, -- The number of request that are allowed within a provided time limit. time_limit = 3, -- The time limit in which the quantity of requests that should be accepted. } --- Set whether the server will use an adaptive/dynamic HTTPS window size +-- Set whether the server will use an adaptive/dynamic HTTPS window size, see https://httpwg.org/specs/rfc9113.html#fc-principles https_adaptive_window_size = false -- ### Search ###