(&self)
| 142 | /// Returns `true` when all three TLS paths are configured. |
| 143 | #[must_use] |
| 144 | pub fn tls_enabled(&self) -> bool { |
| 145 | self.guest_tls_ca.is_some() && self.guest_tls_cert.is_some() && self.guest_tls_key.is_some() |
| 146 | } |
| 147 | |
| 148 | /// Validate TLS configuration consistency. |
| 149 | /// |
no outgoing calls