]> git.ipfire.org Git - thirdparty/pdns.git/blame - pdns/dynhandler.hh
dnsdist: Fix DNS over plain HTTP broken by `reloadAllCertificates()`
[thirdparty/pdns.git] / pdns / dynhandler.hh
CommitLineData
12c86877 1/*
12471842
PL
2 * This file is part of PowerDNS or dnsdist.
3 * Copyright -- PowerDNS.COM B.V. and its contributors
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * In addition, for the avoidance of any doubt, permission is granted to
10 * link this program with OpenSSL and to (re)distribute the binaries
11 * produced as the result of such linking.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
e8c59f2d 22#pragma once
12c86877
BH
23#include <vector>
24#include <string>
25#include <stdlib.h>
26#include <sys/types.h>
ef1d2f44 27
76473b92 28#include <unistd.h>
12c86877 29
10f4eea8 30#include "namespaces.hh"
12c86877
BH
31
32
33bool DLQuitPlease();
64bcb6be 34void setStatus(const string &str);
12c86877
BH
35string DLQuitHandler(const vector<string>&parts, Utility::pid_t ppid);
36string DLRQuitHandler(const vector<string>&parts, Utility::pid_t ppid);
37string DLPingHandler(const vector<string>&parts, Utility::pid_t ppid);
38string DLShowHandler(const vector<string>&parts, Utility::pid_t ppid);
39string DLUptimeHandler(const vector<string>&parts, Utility::pid_t ppid);
40string DLSettingsHandler(const vector<string>&parts, Utility::pid_t ppid);
93698ef3 41string DLRespSizeHandler(const vector<string>&parts, Utility::pid_t ppid);
12c86877 42string DLCCHandler(const vector<string>&parts, Utility::pid_t ppid);
ba7244a5 43string DLQTypesHandler(const vector<string>&parts, Utility::pid_t ppid);
93698ef3
PD
44string DLRSizesHandler(const vector<string>&parts, Utility::pid_t ppid);
45string DLRemotesHandler(const vector<string>&parts, Utility::pid_t ppid);
12c86877
BH
46string DLStatusHandler(const vector<string>&parts, Utility::pid_t ppid);
47string DLNotifyHandler(const vector<string>&parts, Utility::pid_t ppid);
48string DLNotifyHostHandler(const vector<string>&parts, Utility::pid_t ppid);
49string DLReloadHandler(const vector<string>&parts, Utility::pid_t ppid);
50string DLRediscoverHandler(const vector<string>&parts, Utility::pid_t ppid);
51string DLVersionHandler(const vector<string>&parts, Utility::pid_t ppid);
52string DLPurgeHandler(const vector<string>&parts, Utility::pid_t ppid);
ef1d2f44 53string DLNotifyRetrieveHandler(const vector<string>&parts, Utility::pid_t ppid);
64bcb6be 54string DLCurrentConfigHandler(const vector<string>&parts, Utility::pid_t ppid);
767da1a0 55string DLListZones(const vector<string>&parts, Utility::pid_t ppid);
24e0b305 56string DLTokenLogin(const vector<string>&parts, Utility::pid_t ppid);
08949c81 57string DLSuckRequests(const vector<string> &parts, Utility::pid_t ppid);