diff options
Diffstat (limited to 'src/config.rs')
-rw-r--r-- | src/config.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.rs b/src/config.rs index 196b489..bc972e3 100644 --- a/src/config.rs +++ b/src/config.rs @@ -62,6 +62,8 @@ pub struct HttpsConfig { #[serde(deserialize_with = "seq_or_not")] pub cert_path: Vec<PathBuf>, pub cert_fallback: Option<PathBuf>, + #[serde(default)] + pub disable_h3: bool, } // try deser Vec<T> but fall back to deser T and putting that in Vec |