Use the null hook instead of the ssl hook.
[cascardo/rnetproxy.git] / ssl.h
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 #ifndef POPPROXY_SSL_H
22 #define POPPROXY_SSL_H
23
24 #include "nethook.h"
25 #include "hcconn.h"
26
27 struct ssl_data
28 {
29   char *server;
30   gnutls_session_t session;
31   GString *buffer;
32   gboolean handshaking;
33 };
34
35 net_hook_t* ssl_hook_new (HCConn*, char*, char *);
36 void ssl_destroy (net_hook_t*);
37
38 net_hook_t * ssl_server_hook_new (net_hook_t *, char *, char *);
39
40 #endif