Fancier protocol for 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 };
30
31 #define TINC_CTL_VERSION_CURRENT 0
32
33 /* This greeting is sent by the server on socket open. */
34 typedef struct tinc_ctl_greeting_t {
35         int version;
36 } tinc_ctl_greeting_t;
37
38 /* A single request or response header. */
39 typedef struct tinc_ctl_request_t {
40         size_t length; /* total length, including the header */
41         enum request_type type;
42         int id;
43         int res_errno; /* used only for responses */
44 } tinc_ctl_request_t;
45
46 #endif