]> git.meshlink.io Git - meshlink-tiny/blob - src/protocol_edge.c
Add a metering test.
[meshlink-tiny] / src / protocol_edge.c
1 /*
2     protocol_edge.c -- handle the meta-protocol, edges
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 #include "system.h"
21
22 #include "conf.h"
23 #include "connection.h"
24 #include "logger.h"
25 #include "meshlink_internal.h"
26 #include "meta.h"
27 #include "net.h"
28 #include "netutl.h"
29 #include "node.h"
30 #include "protocol.h"
31 #include "utils.h"
32 #include "xalloc.h"
33
34 bool send_add_edge(meshlink_handle_t *mesh, connection_t *c, int contradictions) {
35         char *address, *port;
36         sockaddr2str(&c->address, &address, &port);
37
38         bool result = send_request(mesh, c, "%d %x %s %d %s %s %s %s %d %s %x %d %d %x", ADD_EDGE, prng(mesh, UINT_MAX),
39                                    mesh->self->name, mesh->self->devclass, CORE_MESH,
40                                    mesh->peer->name, address, port,
41                                    mesh->peer->devclass, CORE_MESH, 0, 1000, contradictions, mesh->peer->session_id);
42
43         free(address);
44         free(port);
45
46         return result;
47 }
48
49 bool add_edge_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
50         assert(request);
51         assert(*request);
52
53         (void)mesh;
54         (void)c;
55         (void)request;
56
57         return true;
58 }
59
60 bool del_edge_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
61         assert(request);
62         assert(*request);
63
64         (void)mesh;
65         (void)c;
66         (void)request;
67
68         return true;
69 }