No nethook available anymore.
[cascardo/rnetproxy.git] / null.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 <glib.h>
22 #include "null.h"
23
24 static void
25 null_connect (net_hook_t *hook)
26 {
27 }
28
29 static void
30 null_close (net_hook_t *hook)
31 {
32   if (hook->peer)
33     {
34       hook->peer->peer = NULL;
35       hc_conn_close (hook->peer->conn);
36     }
37   hc_conn_close (hook->conn);
38   g_slice_free (net_hook_t, hook);
39 }
40
41 static void
42 null_read (net_hook_t *hook, gchar *buffer, size_t len)
43 {
44   hc_conn_write (hook->peer->conn, buffer, len);
45 }
46
47 static void
48 null_error (net_hook_t *hook)
49 {
50   g_message ("Error in POP3 client connection.");
51 }
52
53 static net_hook_t *
54 null_server_hook_new (net_hook_t *client_hook, char *server, char *port)
55 {
56   net_hook_t *hook;
57   int fd;
58   HCConn *conn;
59   hook = g_slice_new (net_hook_t);
60   hook->peer = client_hook;
61   hook->server = TRUE;
62   hook->connect = null_connect;
63   hook->close = null_close;
64   hook->read = null_read;
65   hook->data = NULL;
66   conn = hc_conn_new (NULL, NULL);
67   hook->conn = hc_conn_new (nethook_event, hook);
68   fd = hc_tcp_connect (server, port);
69   hc_conn_set_driver_channel (conn, fd);
70   hc_conn_set_driver_ssl (hook->conn, conn);
71   return hook;
72 }
73
74 net_hook_t *
75 null_hook_new (HCConn *conn, char *server, char *port)
76 {
77   net_hook_t *hook;
78   hook = g_slice_new (net_hook_t);
79   hook->conn = conn;
80   hook->peer = NULL;
81   hook->server = FALSE;
82   hook->connect = null_connect;
83   hook->close = null_close;
84   hook->read = null_read;
85   hook->data = server;
86   hook->peer = null_server_hook_new (hook, server, port);
87   hc_conn_set_callback (hook->conn, nethook_event, hook);
88   return hook;
89 }
90
91 void
92 null_destroy (net_hook_t *hook)
93 {
94   g_slice_free (net_hook_t, hook);
95 }