]> git.ipfire.org Git - thirdparty/pdns.git/blob - pdns/dynhandler.hh
remove all windows code from PowerDNS
[thirdparty/pdns.git] / pdns / dynhandler.hh
1 /*
2 PowerDNS Versatile Database Driven Nameserver
3 Copyright (C) 2002 PowerDNS.COM BV
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License version 2
7 as published by the Free Software Foundation
8
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19 #ifndef PDNS_DYNHANDLER_HH
20 #define PDNS_DYNHANDLER_HH
21
22 #include <vector>
23 #include <string>
24 #include <stdlib.h>
25 #include <sys/types.h>
26
27 #include "config.h"
28 #include <unistd.h>
29
30 #include "namespaces.hh"
31
32
33 bool DLQuitPlease();
34 void setStatus(const string &str);
35 string DLQuitHandler(const vector<string>&parts, Utility::pid_t ppid);
36 string DLRQuitHandler(const vector<string>&parts, Utility::pid_t ppid);
37 string DLPingHandler(const vector<string>&parts, Utility::pid_t ppid);
38 string DLShowHandler(const vector<string>&parts, Utility::pid_t ppid);
39 string DLUptimeHandler(const vector<string>&parts, Utility::pid_t ppid);
40 string DLSettingsHandler(const vector<string>&parts, Utility::pid_t ppid);
41 string DLRespSizeHandler(const vector<string>&parts, Utility::pid_t ppid);
42 string DLCCHandler(const vector<string>&parts, Utility::pid_t ppid);
43 string DLQTypesHandler(const vector<string>&parts, Utility::pid_t ppid);
44 string DLRSizesHandler(const vector<string>&parts, Utility::pid_t ppid);
45 string DLRemotesHandler(const vector<string>&parts, Utility::pid_t ppid);
46 string DLStatusHandler(const vector<string>&parts, Utility::pid_t ppid);
47 string DLNotifyHandler(const vector<string>&parts, Utility::pid_t ppid);
48 string DLNotifyHostHandler(const vector<string>&parts, Utility::pid_t ppid);
49 string DLReloadHandler(const vector<string>&parts, Utility::pid_t ppid);
50 string DLRediscoverHandler(const vector<string>&parts, Utility::pid_t ppid);
51 string DLVersionHandler(const vector<string>&parts, Utility::pid_t ppid);
52 string DLPurgeHandler(const vector<string>&parts, Utility::pid_t ppid);
53 string DLNotifyRetrieveHandler(const vector<string>&parts, Utility::pid_t ppid);
54 string DLCurrentConfigHandler(const vector<string>&parts, Utility::pid_t ppid);
55 #endif /* PDNS_DYNHANDLER_HH */