summaryrefslogtreecommitdiffstats
path: root/dnsdist-web.hh
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 21:11:59 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 21:11:59 +0000
commit3cd01b932e1c85394272ae64fae67ebeda92fb00 (patch)
treec5a3115d710afc1879ddea5349362a2bc651733c /dnsdist-web.hh
parentInitial commit. (diff)
downloaddnsdist-3cd01b932e1c85394272ae64fae67ebeda92fb00.tar.xz
dnsdist-3cd01b932e1c85394272ae64fae67ebeda92fb00.zip
Adding upstream version 1.8.3.upstream/1.8.3
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dnsdist-web.hh')
-rw-r--r--dnsdist-web.hh21
1 files changed, 21 insertions, 0 deletions
diff --git a/dnsdist-web.hh b/dnsdist-web.hh
new file mode 100644
index 0000000..3497d65
--- /dev/null
+++ b/dnsdist-web.hh
@@ -0,0 +1,21 @@
+#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::unordered_map<std::string, std::string> > customHeaders);
+void setWebserverAPIRequiresAuthentication(bool);
+void setWebserverDashboardRequiresAuthentication(bool);
+void setWebserverStatsRequireAuthentication(bool);
+void setWebserverMaxConcurrentConnections(size_t);
+
+void dnsdistWebserverThread(int sock, const ComboAddress& local);
+
+void registerBuiltInWebHandlers();
+void clearWebHandlers();
+
+bool addMetricDefinition(const std::string& name, const std::string& type, const std::string& description, const std::string& customPrometheusName);
+
+std::string getWebserverConfig();