]> git.meshlink.io Git - meshlink/blob - src/meshlink_internal.h
Move bypass_security to mesh
[meshlink] / src / meshlink_internal.h
1 /*
2     meshlink_internal.h -- Internal parts of the public API.
3     Copyright (C) 2014 Guus Sliepen <guus@meshlink.io>
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 MESHLINK_INTERNAL_H
21 #define MESHLINK_INTERNAL_H
22
23 #include "system.h"
24
25 #include "event.h"
26 #include "hash.h"
27 #include "logger.h"
28 #include "meshlink.h"
29 #include "sockaddr.h"
30
31 #define MAXSOCKETS 8    /* Probably overkill... */
32
33 typedef struct listen_socket_t {
34         struct io_t tcp;
35         struct io_t udp;
36         sockaddr_t sa;
37         bool bindto;
38 } listen_socket_t;
39
40 typedef enum proxytype_t {
41         PROXY_NONE = 0,
42         PROXY_SOCKS4,
43         PROXY_SOCKS4A,
44         PROXY_SOCKS5,
45         PROXY_HTTP,
46         PROXY_EXEC,
47 } proxytype_t;
48
49 /// A handle for an instance of MeshLink.
50 struct meshlink_handle {
51         char *confbase;
52         char *name;
53
54         meshlink_receive_cb_t receive_cb;
55         meshlink_node_status_cb_t node_status_cb;
56         meshlink_log_cb_t log_cb;
57         meshlink_log_level_t log_level;
58
59         pthread_t thread;
60         listen_socket_t listen_socket[MAXSOCKETS];
61         int listen_sockets;
62
63         struct node_t *self;
64
65         struct splay_tree_t *config;
66         struct splay_tree_t *edges;
67         struct splay_tree_t *nodes;
68
69         struct list_t *connections;
70         struct list_t *outgoings;
71
72         int contradicting_add_edge;
73         int contradicting_del_edge;
74         int sleeptime;
75         time_t last_config_check;
76         timeout_t pingtimer;
77         timeout_t periodictimer;
78
79         char *myport;
80
81         char *proxyhost;
82         char *proxyport;
83         char *proxyuser;
84         char *proxypass;
85         proxytype_t proxytype;
86
87         bool localdiscovery;
88         sockaddr_t localdiscovery_address;
89
90         hash_t *node_udp_cache;
91         struct connection_t *everyone;
92         struct ecdsa *invitation_key;
93
94         debug_t debug_level;
95         bool bypass_security;
96 };
97
98 /// A handle for a MeshLink node.
99 struct meshlink_node {
100         const char *name;
101         void *priv;
102 };
103
104 // This is a *temporary* global variable which will keep the compiler happy
105 // while refactoring the code to get rid of global variables.
106 // TODO: remove this when no other global variables remain.
107
108 extern meshlink_handle_t *mesh;
109
110 #endif // MESHLINK_INTERNAL_H