750098e3515523892a29fa74ffdb8a4e2b690360
[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
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19     $Id$
20 */
21
22 #ifndef __TINC_CONTROL_PROTOCOL_H__
23 #define __TINC_CONTROL_PROTOCOL_H__
24
25 enum request_type {
26         REQ_STOP,
27         REQ_RELOAD,
28         REQ_RESTART,
29         REQ_DUMP_NODES,
30         REQ_DUMP_EDGES,
31         REQ_DUMP_SUBNETS,
32         REQ_DUMP_CONNECTIONS,
33         REQ_DUMP_GRAPH,
34 };
35
36 #define TINC_CTL_VERSION_CURRENT 0
37
38 /* This greeting is sent by the server on socket open. */
39 typedef struct tinc_ctl_greeting_t {
40         int version;
41 } tinc_ctl_greeting_t;
42
43 /* A single request or response header. */
44 typedef struct tinc_ctl_request_t {
45         size_t length; /* total length, including the header */
46         enum request_type type;
47         int id;
48         int res_errno; /* used only for responses */
49 } tinc_ctl_request_t;
50
51 #endif