]> git.meshlink.io Git - meshlink-tiny/blob - src/protocol_key.c
Remove all support for channels.
[meshlink-tiny] / src / protocol_key.c
1 /*
2     protocol_key.c -- handle the meta-protocol, key exchange
3     Copyright (C) 2014-2017 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 "connection.h"
23 #include "logger.h"
24 #include "meshlink_internal.h"
25 #include "net.h"
26 #include "netutl.h"
27 #include "node.h"
28 #include "prf.h"
29 #include "protocol.h"
30 #include "sptps.h"
31 #include "utils.h"
32 #include "xalloc.h"
33
34 bool key_changed_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
35         (void)mesh;
36         (void)c;
37         (void)request;
38         return true;
39 }
40
41 bool req_key_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
42         (void)mesh;
43         (void)c;
44         (void)request;
45         return true;
46 }
47
48 bool ans_key_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
49         (void)mesh;
50         (void)c;
51         (void)request;
52         return true;
53 }