| 209 | } |
| 210 | |
| 211 | void IcingaDB::ValidateTlsProtocolmin(const Lazy<String>& lvalue, const ValidationUtils& utils) |
| 212 | { |
| 213 | ObjectImpl<IcingaDB>::ValidateTlsProtocolmin(lvalue, utils); |
| 214 | |
| 215 | try { |
| 216 | ResolveTlsProtocolVersion(lvalue()); |
| 217 | } catch (const std::exception& ex) { |
| 218 | BOOST_THROW_EXCEPTION(ValidationError(this, { "tls_protocolmin" }, ex.what())); |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | void IcingaDB::ValidateConnectTimeout(const Lazy<double>& lvalue, const ValidationUtils& utils) |
| 223 | { |
nothing calls this directly
no test coverage detected