]> jfr.im git - solanum.git/blame - librb/include/commio-ssl.h
linebuf: increase buffer size to accommodate IRCv3 tags
[solanum.git] / librb / include / commio-ssl.h
CommitLineData
030272f3
VY
1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * commio-ssl.h: A header for the ssl code
4 *
5 * Copyright (C) 2008 ircd-ratbox development team
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
20 * USA
21 *
030272f3
VY
22 */
23
24#ifndef _COMMIO_SSL_H
25#define _COMMIO_SSL_H
26
c1725bda 27int rb_setup_ssl_server(const char *cert, const char *keyfile, const char *dhfile, const char *cipher_list);
db137867
AC
28int rb_init_ssl(void);
29
aa4737a0 30int rb_ssl_listen(rb_fde_t *F, int backlog, int defer_accept);
db137867
AC
31int rb_init_prng(const char *path, prng_seed_t seed_type);
32
33int rb_get_random(void *buf, size_t length);
34const char *rb_get_ssl_strerror(rb_fde_t *F);
3202e249
VY
35void rb_ssl_start_accepted(rb_fde_t *new_F, ACCB * cb, void *data, int timeout);
36void rb_ssl_start_connected(rb_fde_t *F, CNCB * callback, void *data, int timeout);
5ad62c80 37void rb_connect_tcp_ssl(rb_fde_t *F, struct sockaddr *dest, struct sockaddr *clocal,
3202e249 38 CNCB * callback, void *data, int timeout);
a9fb3ed0 39void rb_ssl_accept_setup(rb_fde_t *F, rb_fde_t *new_F, struct sockaddr *st, int addrlen);
db137867
AC
40void rb_ssl_shutdown(rb_fde_t *F);
41ssize_t rb_ssl_read(rb_fde_t *F, void *buf, size_t count);
42ssize_t rb_ssl_write(rb_fde_t *F, const void *buf, size_t count);
030272f3
VY
43void rb_get_ssl_info(char *buf, size_t length);
44
45#endif