]> jfr.im git - solanum.git/blob - include/sslproc.h
Clean up duplication in ChannelModeFunc prototypes (#52)
[solanum.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 #ifndef INCLUDED_sslproc_h
23 #define INCLUDED_sslproc_h
24
25 struct _ssl_ctl;
26 typedef struct _ssl_ctl ssl_ctl_t;
27
28 enum ssld_status {
29 SSLD_ACTIVE,
30 SSLD_SHUTDOWN,
31 SSLD_DEAD,
32 };
33
34 void init_ssld(void);
35 void restart_ssld(void);
36 int start_ssldaemon(int count);
37 ssl_ctl_t *start_ssld_accept(rb_fde_t *sslF, rb_fde_t *plainF, uint32_t id);
38 ssl_ctl_t *start_ssld_connect(rb_fde_t *sslF, rb_fde_t *plainF, uint32_t id);
39 void start_zlib_session(void *data);
40 void ssld_update_config(void);
41 void ssld_decrement_clicount(ssl_ctl_t *ctl);
42 int get_ssld_count(void);
43 void ssld_foreach_info(void (*func)(void *data, pid_t pid, int cli_count, enum ssld_status status, const char *version), void *data);
44
45 #endif
46