Destroy SSL connection properly.
[cascardo/rnetproxy.git] / ssl.c
1 /*
2 ** Copyright (C) 2006 Thadeu Lima de Souza Cascardo <cascardo@minaslivre.org>
3 ** Copyright (C) 2009 Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
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
16 ** along with this program; if not, write to the Free Software
17 ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 **  
19 */
20
21 #include <gnutls/gnutls.h>
22 #include <gnet.h>
23 #include <glib.h>
24 #include <string.h>
25 #include <errno.h>
26 #include "ssl.h"
27
28 static void
29 ssl_connect (net_hook_t *hook)
30 {
31 }
32
33 static void
34 ssl_close (net_hook_t *hook)
35 {
36   if (hook->peer)
37     {
38       hook->peer->peer = NULL;
39       gnet_conn_disconnect (hook->peer->conn);
40     }
41   gnet_conn_delete (hook->conn);
42   g_slice_free (net_hook_t, hook);
43 }
44
45 static void
46 ssl_write (net_hook_t *hook)
47 {
48 }
49
50 static void
51 ssl_read (net_hook_t *hook, gchar *buffer, size_t len)
52 {
53   struct ssl_data *ssl = hook->peer->data;
54   gnutls_record_send (ssl->session, buffer, len);
55 }
56
57 static void
58 ssl_error (net_hook_t *hook)
59 {
60 }
61
62 net_hook_t *
63 ssl_hook_new (GConn *conn, char *server)
64 {
65   net_hook_t *hook;
66   hook = g_slice_new (net_hook_t);
67   hook->conn = conn;
68   hook->peer = NULL;
69   hook->server = FALSE;
70   hook->connect = ssl_connect;
71   hook->close = ssl_close;
72   hook->write = ssl_write;
73   hook->read = ssl_read;
74   hook->data = NULL;
75   hook->peer = ssl_server_hook_new (hook, server);
76   gnet_conn_set_callback (hook->conn, nethook_event, hook);
77   return hook;
78 }
79
80 void
81 ssl_destroy (net_hook_t *hook)
82 {
83   g_slice_free (net_hook_t, hook);
84 }