Purge through the control socket
[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         REQ_PURGE,
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 } tinc_ctl_greeting_t;
43
44 /* A single request or response header. */
45 typedef struct tinc_ctl_request_t {
46         size_t length; /* total length, including the header */
47         enum request_type type;
48         int id;
49         int res_errno; /* used only for responses */
50 } tinc_ctl_request_t;
51
52 #endif