]> jfr.im git - irc/rqf/shadowircd.git/blob - include/sslproc.h
Backed out changeset c04f6578869c
[irc/rqf/shadowircd.git] / include / sslproc.h
1 /*
2 * sslproc.h: An interface to the ratbox ssld helper daemon
3 * Copyright (C) 2007 Aaron Sethman <androsyn@ratbox.org>
4 * Copyright (C) 2007 ircd-ratbox development team
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
19 * USA
20 *
21 */
22
23 #ifndef INCLUDED_sslproc_h
24 #define INCLUDED_sslproc_h
25
26 struct _ssl_ctl;
27 typedef struct _ssl_ctl ssl_ctl_t;
28
29 void init_ssld(void);
30 int start_ssldaemon(int count, const char *ssl_cert, const char *ssl_private_key, const char *ssl_dh_params);
31 ssl_ctl_t *start_ssld_accept(rb_fde_t *sslF, rb_fde_t *plainF, int id);
32 ssl_ctl_t *start_ssld_connect(rb_fde_t *sslF, rb_fde_t *plainF, int id);
33 void start_zlib_session(void *data);
34 void send_new_ssl_certs(const char *ssl_cert, const char *ssl_private_key, const char *ssl_dh_params);
35 void ssld_decrement_clicount(ssl_ctl_t *ctl);
36 int get_ssld_count(void);
37
38 #endif
39