]> git.ipfire.org Git - thirdparty/pdns.git/blob - pdns/dynhandler.hh
Initial revision
[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 as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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 #ifndef WIN32
28 # include "config.h"
29 # include <unistd.h>
30 #else
31 # include "pdnsservice.hh"
32 #endif // WIN32
33
34 using namespace std;
35
36
37 bool DLQuitPlease();
38 string DLQuitHandler(const vector<string>&parts, Utility::pid_t ppid);
39 string DLRQuitHandler(const vector<string>&parts, Utility::pid_t ppid);
40 string DLPingHandler(const vector<string>&parts, Utility::pid_t ppid);
41 string DLShowHandler(const vector<string>&parts, Utility::pid_t ppid);
42 string DLUptimeHandler(const vector<string>&parts, Utility::pid_t ppid);
43 string DLSettingsHandler(const vector<string>&parts, Utility::pid_t ppid);
44 void setStatus(const string &str);
45 string DLCCHandler(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 #endif /* PDNS_DYNHANDLER_HH */