Change from GNet to HCConn.
[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_write (net_hook_t* hook)
40 {
41 }
42
43 static void null_read (net_hook_t* hook, gchar* buffer, size_t len)
44 {
45   hc_conn_write (hook->peer->conn, buffer, len);
46 }
47
48 static void null_error (net_hook_t* hook)
49 {
50   g_message ("Error in POP3 client connection.");
51 }
52
53 static net_hook_t* null_server_hook_new (net_hook_t* client_hook, char *server)
54 {
55   net_hook_t* hook;
56   hook = g_slice_new (net_hook_t);
57   hook->peer = client_hook;
58   hook->server = TRUE;
59   hook->connect = null_connect;
60   hook->close = null_close;
61   hook->write = null_write;
62   hook->read = null_read;
63   hook->data = NULL;
64   hook->conn = hc_conn_new (hc_tcp_connect (server, "110"), nethook_event, hook);
65   return hook;
66 }
67
68 net_hook_t* null_hook_new (HCConn* conn, char *server)
69 {
70   net_hook_t* hook;
71   hook = g_slice_new (net_hook_t);
72   hook->conn = conn;
73   hook->peer = NULL;
74   hook->server = FALSE;
75   hook->connect = null_connect;
76   hook->close = null_close;
77   hook->write = null_write;
78   hook->read = null_read;
79   hook->data = server;
80   hook->peer = null_server_hook_new (hook, server);
81   hc_conn_set_callback (hook->conn, nethook_event, hook);
82   return hook;
83 }
84
85 void null_destroy (net_hook_t* hook)
86 {
87   g_slice_free (net_hook_t, hook);
88 }