]> git.meshlink.io Git - meshlink-tiny/blob - src/connection.c
97e391823ec1272dfb338b272de40e7ed82efe35
[meshlink-tiny] / src / connection.c
1 /*
2     connection.c -- connection list management
3     Copyright (C) 2000-2013 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 "list.h"
23 #include "conf.h"
24 #include "connection.h"
25 #include "list.h"
26 #include "logger.h"
27 #include "meshlink_internal.h"
28 #include "utils.h"
29 #include "xalloc.h"
30
31 void init_connections(meshlink_handle_t *mesh) {
32         assert(!mesh->connection);
33 }
34
35 void exit_connections(meshlink_handle_t *mesh) {
36         if(mesh->connection) {
37                 free_connection(mesh->connection);
38         }
39
40         mesh->connection = NULL;
41 }
42
43 connection_t *new_connection(void) {
44         return xzalloc(sizeof(connection_t));
45 }
46
47 void free_connection(connection_t *c) {
48         assert(c);
49
50         sptps_stop(&c->sptps);
51         ecdsa_free(c->ecdsa);
52
53         buffer_clear(&c->inbuf);
54         buffer_clear(&c->outbuf);
55
56         if(c->io.cb) {
57                 abort();
58         }
59
60         if(c->socket > 0) {
61                 closesocket(c->socket);
62         }
63
64         free(c->name);
65
66         free(c);
67 }
68
69 void connection_add(meshlink_handle_t *mesh, connection_t *c) {
70         assert(c);
71         assert(!mesh->connection);
72
73         c->mesh = mesh;
74         mesh->connection = c;
75 }
76
77 void connection_del(meshlink_handle_t *mesh, connection_t *c) {
78         assert(c);
79         assert(mesh->connection == c);
80
81         io_del(&mesh->loop, &c->io);
82         free(mesh->connection);
83         mesh->connection = NULL;
84 }