]> jfr.im git - solanum.git/blame_incremental - include/sslproc.h
doc: Change missed chadybdis name to solanum (#111)
[solanum.git] / include / sslproc.h
... / ...
CommitLineData
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
25struct _ssl_ctl;
26typedef struct _ssl_ctl ssl_ctl_t;
27
28enum ssld_status {
29 SSLD_ACTIVE,
30 SSLD_SHUTDOWN,
31 SSLD_DEAD,
32};
33
34void init_ssld(void);
35void restart_ssld(void);
36int start_ssldaemon(int count);
37ssl_ctl_t *start_ssld_accept(rb_fde_t *sslF, rb_fde_t *plainF, uint32_t id);
38ssl_ctl_t *start_ssld_connect(rb_fde_t *sslF, rb_fde_t *plainF, uint32_t id);
39void start_zlib_session(void *data);
40void ssld_update_config(void);
41void ssld_decrement_clicount(ssl_ctl_t *ctl);
42int get_ssld_count(void);
43void 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