Update FSF address in files not covered by the merge.
[tinc] / src / control_common.h
1 /*
2     control_protocol.h -- control socket protocol.
3     Copyright (C) 2007 Scott Lamb <slamb@slamb.org>
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 along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #ifndef __TINC_CONTROL_PROTOCOL_H__
21 #define __TINC_CONTROL_PROTOCOL_H__
22
23 enum request_type {
24         REQ_STOP,
25         REQ_RELOAD,
26         REQ_RESTART,
27         REQ_DUMP_NODES,
28         REQ_DUMP_EDGES,
29         REQ_DUMP_SUBNETS,
30         REQ_DUMP_CONNECTIONS,
31         REQ_DUMP_GRAPH,
32         REQ_PURGE,
33         REQ_SET_DEBUG,
34         REQ_RETRY,
35 };
36
37 #define TINC_CTL_VERSION_CURRENT 0
38
39 /* This greeting is sent by the server on socket open. */
40 typedef struct tinc_ctl_greeting_t {
41         int version;
42         pid_t pid;
43 } tinc_ctl_greeting_t;
44
45 /* A single request or response header. */
46 typedef struct tinc_ctl_request_t {
47         size_t length; /* total length, including the header */
48         enum request_type type;
49         int id;
50         int res_errno; /* used only for responses */
51 } tinc_ctl_request_t;
52
53 #endif