]> git.meshlink.io Git - meshlink/blob - src/meshlink_internal.h
Move several variables 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 "meshlink.h"
27
28 /// A handle for an instance of MeshLink.
29 struct meshlink_handle {
30         char *confbase;
31         char *name;
32
33         meshlink_receive_cb_t receive_cb;
34         meshlink_node_status_cb_t node_status_cb;
35         meshlink_log_cb_t log_cb;
36         meshlink_log_level_t log_level;
37
38         pthread_t thread;
39         struct list_t *sockets;
40
41         struct node_t *self;
42
43         struct splay_tree_t *config;
44         struct splay_tree_t *edges;
45         struct splay_tree_t *nodes;
46
47         struct list_t *connections;
48         struct list_t *outgoings;
49
50         int contradicting_add_edge;
51         int contradicting_del_edge;
52         int sleeptime;
53         time_t last_config_check;
54         timeout_t pingtimer;
55         timeout_t periodictimer;
56 };
57
58 /// A handle for a MeshLink node.
59 struct meshlink_node {
60         const char *name;
61         void *priv;
62 };
63
64 // This is a *temporary* global variable which will keep the compiler happy
65 // while refactoring the code to get rid of global variables.
66 // TODO: remove this when no other global variables remain.
67
68 extern meshlink_handle_t *mesh;
69
70 #endif // MESHLINK_INTERNAL_H