]> git.meshlink.io Git - meshlink/blob - src/protocol_misc.c
Move the routing header out of the SPTPS payload.
[meshlink] / src / protocol_misc.c
1 /*
2     protocol_misc.c -- handle the meta-protocol, miscellaneous functions
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 "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 "protocol.h"
30 #include "utils.h"
31
32 bool send_ping(meshlink_handle_t *mesh, connection_t *c) {
33         c->status.pinged = true;
34         c->last_ping_time = mesh->loop.now.tv_sec;
35
36         return send_request(mesh, c, "%d", PING);
37 }
38
39 bool ping_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
40         (void)request;
41         return send_pong(mesh, c);
42 }
43
44 bool send_pong(meshlink_handle_t *mesh, connection_t *c) {
45         return send_request(mesh, c, "%d", PONG);
46 }
47
48 bool pong_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
49         (void)mesh;
50         (void)request;
51         c->status.pinged = false;
52
53         /* Succesful connection, reset timeout if this is an outgoing connection. */
54
55         if(c->outgoing) {
56                 c->outgoing->timeout = 0;
57                 c->outgoing->cfg = NULL;
58
59                 if(c->outgoing->ai) {
60                         freeaddrinfo(c->outgoing->ai);
61                 }
62
63                 c->outgoing->ai = NULL;
64                 c->outgoing->aip = NULL;
65         }
66
67         return true;
68 }