diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:34:30 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:34:30 +0000 |
commit | 4fc2f55f761d71aae1f145d5aa94ba929cc39676 (patch) | |
tree | 5c1e1db3b46dd4edbe11f612d93cb94b96891ce3 /dnsdist-web.hh | |
parent | Initial commit. (diff) | |
download | dnsdist-4fc2f55f761d71aae1f145d5aa94ba929cc39676.tar.xz dnsdist-4fc2f55f761d71aae1f145d5aa94ba929cc39676.zip |
Adding upstream version 1.7.3.upstream/1.7.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dnsdist-web.hh')
-rw-r--r-- | dnsdist-web.hh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/dnsdist-web.hh b/dnsdist-web.hh new file mode 100644 index 0000000..c119eee --- /dev/null +++ b/dnsdist-web.hh @@ -0,0 +1,17 @@ +#pragma once + +#include "credentials.hh" + +void setWebserverAPIKey(std::unique_ptr<CredentialsHolder>&& apiKey); +void setWebserverPassword(std::unique_ptr<CredentialsHolder>&& password); +void setWebserverACL(const std::string& acl); +void setWebserverCustomHeaders(const boost::optional<std::map<std::string, std::string> > customHeaders); +void setWebserverStatsRequireAuthentication(bool); +void setWebserverMaxConcurrentConnections(size_t); + +void dnsdistWebserverThread(int sock, const ComboAddress& local); + +void registerBuiltInWebHandlers(); +void clearWebHandlers(); + +std::string getWebserverConfig(); |