diff --git a/src/modes/server/common.rs b/src/modes/server/common.rs index 245a4cd..00e7cb7 100644 --- a/src/modes/server/common.rs +++ b/src/modes/server/common.rs @@ -161,6 +161,10 @@ fn default_allow_binary() -> bool { true } +fn default_stream() -> bool { + false +} + fn check_basic_auth(auth_str: &str, expected_password: &str, expected_hash: &Option) -> bool { if !auth_str.starts_with("Basic ") { return false;