Make inherited protected functions of ApiListener public

This is needed so it's possible to manually add an ApiListener object
for the purpose of unit-testing.
This commit is contained in:
Johannes Schmidt 2025-07-15 11:30:11 +02:00
parent d59296b9fd
commit 8acf0cc0c7

View File

@ -161,12 +161,12 @@ public:
return m_WaitGroup;
}
protected:
void OnConfigLoaded() override;
void OnAllConfigLoaded() override;
void Start(bool runtimeCreated) override;
void Stop(bool runtimeDeleted) override;
protected:
void ValidateTlsProtocolmin(const Lazy<String>& lvalue, const ValidationUtils& utils) override;
void ValidateTlsHandshakeTimeout(const Lazy<double>& lvalue, const ValidationUtils& utils) override;