2 meshlink_internal.h -- Internal parts of the public API.
3 Copyright (C) 2014 Guus Sliepen <guus@meshlink.io>
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.
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.
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.
20 #ifndef MESHLINK_INTERNAL_H
21 #define MESHLINK_INTERNAL_H
32 #define MAXSOCKETS 8 /* Probably overkill... */
34 typedef struct listen_socket_t {
41 typedef enum proxytype_t {
50 /// A handle for an instance of MeshLink.
51 struct meshlink_handle {
55 meshlink_receive_cb_t receive_cb;
56 meshlink_node_status_cb_t node_status_cb;
57 meshlink_log_cb_t log_cb;
58 meshlink_log_level_t log_level;
62 listen_socket_t listen_socket[MAXSOCKETS];
67 struct splay_tree_t *config;
68 struct splay_tree_t *edges;
69 struct splay_tree_t *nodes;
71 struct list_t *connections;
72 struct list_t *outgoings;
74 int contradicting_add_edge;
75 int contradicting_del_edge;
77 time_t last_config_check;
79 timeout_t periodictimer;
87 proxytype_t proxytype;
90 sockaddr_t localdiscovery_address;
92 hash_t *node_udp_cache;
93 struct connection_t *everyone;
94 struct ecdsa *invitation_key;
97 int pinginterval; /* seconds between pings */
98 int pingtimeout; /* seconds to wait for response */
103 char cookie[18], hash[18];
112 /// A handle for a MeshLink node.
113 struct meshlink_node {
118 /// Header for data packets routed between nodes
119 typedef struct meshlink_packethdr {
120 uint8_t destination[16];
122 } __attribute__ ((__packed__)) meshlink_packethdr_t;
124 #endif // MESHLINK_INTERNAL_H