0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2024-11-26 07:58:20 -05:00

Compare commits

..

1 Commits

Author SHA1 Message Date
ddotthomas
8aad06f3fc
Merge 6e2a5861d8 into 2df6499fb2 2024-02-20 19:11:35 +00:00
2 changed files with 2 additions and 2 deletions

View File

@ -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 HTTP windows
/// It toggles whether to use adaptive TCP windows
pub adaptive_window: bool,
/// It stores all the engine names that were enabled by the user.
pub upstream_search_engines: HashMap<String, bool>,

View File

@ -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, see https://httpwg.org/specs/rfc9113.html#fc-principles
-- Set whether the server will use an adaptive/dynamic HTTPS window size
https_adaptive_window_size = false
-- ### Search ###