2 protocol_misc.c -- handle the meta-protocol, miscellaneous functions
3 Copyright (C) 2014-2017 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.
23 #include "connection.h"
25 #include "meshlink_internal.h"
32 int maxoutbufsize = 0;
34 /* Status and error notification routines */
36 bool status_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
41 char statusstring[MAX_STRING_SIZE];
43 if(sscanf(request, "%*d %d " MAX_STRING, &statusno, statusstring) != 2) {
44 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s", "STATUS", c->name);
48 logger(mesh, MESHLINK_INFO, "Status message from %s: %d: %s", c->name, statusno, statusstring);
53 bool error_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
58 char errorstring[MAX_STRING_SIZE];
60 if(sscanf(request, "%*d %d " MAX_STRING, &err, errorstring) != 2) {
61 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s", "ERROR", c->name);
65 logger(mesh, MESHLINK_INFO, "Error message from %s: %d: %s", c->name, err, errorstring);
70 bool termreq_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
81 bool send_ping(meshlink_handle_t *mesh, connection_t *c) {
82 c->status.pinged = true;
83 c->last_ping_time = mesh->loop.now.tv_sec;
85 return send_request(mesh, c, NULL, "%d", PING);
88 bool ping_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
94 return send_pong(mesh, c);
97 bool send_pong(meshlink_handle_t *mesh, connection_t *c) {
98 return send_request(mesh, c, NULL, "%d", PONG);
101 bool pong_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
108 c->status.pinged = false;
110 /* Successful connection, reset timeout if this is an outgoing connection. */
113 reset_outgoing(c->outgoing);
119 /* Sending and receiving packets via TCP */
121 bool tcppacket_h(meshlink_handle_t *mesh, connection_t *c, const char *request) {
127 if(sscanf(request, "%*d %hd", &len) != 1) {
128 logger(mesh, MESHLINK_ERROR, "Got bad %s from %s", "PACKET", c->name);
132 // This should never happen with MeshLink.