]> jfr.im git - solanum.git/blame - include/sslproc.h
Merge pull request #334 from edk0/massnotice
[solanum.git] / include / sslproc.h
CommitLineData
1471fb5f
AC
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
1471fb5f
AC
20 */
21
22#ifndef INCLUDED_sslproc_h
23#define INCLUDED_sslproc_h
24
25struct _ssl_ctl;
26typedef struct _ssl_ctl ssl_ctl_t;
27
eb1b303d
SA
28enum ssld_status {
29 SSLD_ACTIVE,
30 SSLD_SHUTDOWN,
31 SSLD_DEAD,
32};
33
1471fb5f 34void init_ssld(void);
eb1b303d 35void restart_ssld(void);
f7b0c4b3 36int start_ssldaemon(int count);
196740c4
AC
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);
1471fb5f 39void start_zlib_session(void *data);
f7b0c4b3 40void ssld_update_config(void);
1471fb5f
AC
41void ssld_decrement_clicount(ssl_ctl_t *ctl);
42int get_ssld_count(void);
e9ffc3c1 43void ssld_foreach_info(void (*func)(void *data, pid_t pid, int cli_count, enum ssld_status status, const char *version), void *data);
1471fb5f
AC
44
45#endif
46