]> jfr.im git - irc/rqf/shadowircd.git/blame - libratbox/include/commio-ssl.h
Cope with OPENSSL_VERSION_NUMBER not being a long.
[irc/rqf/shadowircd.git] / libratbox / include / commio-ssl.h
CommitLineData
f030cae8
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 *
f030cae8
VY
22 */
23
24#ifndef _COMMIO_SSL_H
25#define _COMMIO_SSL_H
26
b57f37fb
WP
27int rb_setup_ssl_server(const char *cert, const char *keyfile, const char *dhfile);
28int rb_init_ssl(void);
29
30int rb_ssl_listen(rb_fde_t *F, int backlog);
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);
94b4fbf9
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);
37void rb_connect_tcp_ssl(rb_fde_t *F, struct sockaddr *dest, struct sockaddr *clocal, int socklen,
38 CNCB * callback, void *data, int timeout);
4414eb3c 39void rb_ssl_accept_setup(rb_fde_t *F, rb_fde_t *new_F, struct sockaddr *st, int addrlen);
b57f37fb
WP
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);
f030cae8
VY
43void rb_get_ssl_info(char *buf, size_t length);
44
45#endif