]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Add password field in yaml generation from map
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Wed, 4 Feb 2026 13:09:20 +0000 (14:09 +0100)
committerOtto Moerbeek <otto.moerbeek@open-xchange.com>
Thu, 12 Feb 2026 09:41:02 +0000 (10:41 +0100)
Signed-off-by: Otto Moerbeek <otto.moerbeek@open-xchange.com>
pdns/recursordist/rec-rust-lib/rust/src/bridge.rs

index 3ddc933a080dd4cc39aedea24aeba21bc77c2192..524b7a2c1930ca7afb03056f7e4807592a6fb73f 100644 (file)
@@ -778,6 +778,7 @@ impl IncomingWSConfig {
         let mut tls = serde_yaml::Mapping::new();
         inserts(&mut tls, "certificate", &self.tls.certificate);
         inserts(&mut tls, "key", &self.tls.key);
+        inserts(&mut tls, "password", &self.tls.password);
         map.insert(
             serde_yaml::Value::String("tls".to_owned()),
             serde_yaml::Value::Mapping(tls),