64cb074663f4e96c81c538b2f16cf62d7a448bb6
[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 null_connect (net_hook_t* hook)
25 {
26 }
27
28 static void null_close (net_hook_t* hook)
29 {
30   if (hook->peer)
31     {
32       hook->peer->peer = NULL;
33       hc_conn_close (hook->peer->conn);
34     }
35   hc_conn_close (hook->conn);
36   g_slice_free (net_hook_t, hook);
37 }
38
39 static void null_read (net_hook_t* hook, gchar* buffer, size_t len)
40 {
41   hc_conn_write (hook->peer->conn, buffer, len);
42 }
43
44 static void null_error (net_hook_t* hook)
45 {
46   g_message ("Error in POP3 client connection.");
47 }
48
49 static net_hook_t* null_server_hook_new (net_hook_t* client_hook, char *server)
50 {
51   net_hook_t* hook;
52   hook = g_slice_new (net_hook_t);
53   hook->peer = client_hook;
54   hook->server = TRUE;
55   hook->connect = null_connect;
56   hook->close = null_close;
57   hook->read = null_read;
58   hook->data = NULL;
59   hook->conn = hc_conn_new (hc_tcp_connect (server, "110"), nethook_event, hook);
60   return hook;
61 }
62
63 net_hook_t* null_hook_new (HCConn* 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 = null_connect;
71   hook->close = null_close;
72   hook->read = null_read;
73   hook->data = server;
74   hook->peer = null_server_hook_new (hook, server);
75   hc_conn_set_callback (hook->conn, nethook_event, hook);
76   return hook;
77 }
78
79 void null_destroy (net_hook_t* hook)
80 {
81   g_slice_free (net_hook_t, hook);
82 }