2 protocol_misc.c -- handle the meta-protocol, miscellaneous functions
3 Copyright (C) 1999-2003 Ivo Timmermans <ivo@o2w.nl>,
4 2000-2003 Guus Sliepen <guus@sliepen.eu.org>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 $Id: protocol_misc.c,v 1.1.4.13 2003/07/24 12:08:16 guus Exp $
26 #include "connection.h"
34 /* Status and error notification routines */
36 bool send_status(connection_t *c, int statusno, const char *statusstring)
41 statusstring = "Status";
43 return send_request(c, "%d %d %s", STATUS, statusno, statusstring);
46 bool status_h(connection_t *c)
49 char statusstring[MAX_STRING_SIZE];
53 if(sscanf(c->buffer, "%*d %d " MAX_STRING, &statusno, statusstring) != 2) {
54 logger(LOG_ERR, _("Got bad %s from %s (%s)"), "STATUS",
55 c->name, c->hostname);
59 ifdebug(STATUS) logger(LOG_NOTICE, _("Status message from %s (%s): %d: %s"),
60 c->name, c->hostname, statusno, statusstring);
65 bool send_error(connection_t *c, int err, const char *errstring)
72 return send_request(c, "%d %d %s", ERROR, err, errstring);
75 bool error_h(connection_t *c)
78 char errorstring[MAX_STRING_SIZE];
82 if(sscanf(c->buffer, "%*d %d " MAX_STRING, &err, errorstring) != 2) {
83 logger(LOG_ERR, _("Got bad %s from %s (%s)"), "ERROR",
84 c->name, c->hostname);
88 ifdebug(ERROR) logger(LOG_NOTICE, _("Error message from %s (%s): %d: %s"),
89 c->name, c->hostname, err, errorstring);
91 terminate_connection(c, c->status.active);
96 bool send_termreq(connection_t *c)
100 return send_request(c, "%d", TERMREQ);
103 bool termreq_h(connection_t *c)
107 terminate_connection(c, c->status.active);
112 bool send_ping(connection_t *c)
116 c->status.pinged = true;
117 c->last_ping_time = now;
119 return send_request(c, "%d", PING);
122 bool ping_h(connection_t *c)
129 bool send_pong(connection_t *c)
133 return send_request(c, "%d", PONG);
136 bool pong_h(connection_t *c)
140 c->status.pinged = false;
142 /* Succesful connection, reset timeout if this is an outgoing connection. */
145 c->outgoing->timeout = 0;
150 /* Sending and receiving packets via TCP */
152 bool send_tcppacket(connection_t *c, vpn_packet_t *packet)
158 if(!send_request(c, "%d %hd", PACKET, packet->len))
161 return send_meta(c, packet->data, packet->len);
164 bool tcppacket_h(connection_t *c)
170 if(sscanf(c->buffer, "%*d %hd", &len) != 1) {
171 logger(LOG_ERR, _("Got bad %s from %s (%s)"), "PACKET", c->name,
176 /* Set reqlen to len, this will tell receive_meta() that a tcppacket is coming. */