2 connection.c -- connection list management
3 Copyright (C) 2000-2013 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.
24 #include "connection.h"
27 #include "meshlink_internal.h"
31 void init_connections(meshlink_handle_t *mesh) {
32 mesh->connections = list_alloc((list_action_t) free_connection);
33 mesh->everyone = new_connection();
34 mesh->everyone->name = xstrdup("mesh->everyone");
37 void exit_connections(meshlink_handle_t *mesh) {
38 if(mesh->connections) {
39 list_delete_list(mesh->connections);
42 free_connection(mesh->everyone);
44 mesh->connections = NULL;
45 mesh->everyone = NULL;
48 connection_t *new_connection(void) {
49 return xzalloc(sizeof(connection_t));
52 void free_connection(connection_t *c) {
57 sptps_stop(&c->sptps);
60 buffer_clear(&c->inbuf);
61 buffer_clear(&c->outbuf);
68 closesocket(c->socket);
74 exit_configuration(&c->config_tree);
80 void connection_add(meshlink_handle_t *mesh, connection_t *c) {
82 list_insert_tail(mesh->connections, c);
85 void connection_del(meshlink_handle_t *mesh, connection_t *c) {
86 io_del(&mesh->loop, &c->io);
87 list_delete(mesh->connections, c);