1 /* 2 * ircd-ratbox: A slightly useful ircd. 3 * commio-ssl.h: A header for the ssl code 4 * 5 * Copyright (C) 2008-2012 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 * 22 * $Id: commio-ssl.h 27377 2012-03-16 06:29:42Z dubkat $ 23 */ 24 25 #ifndef _COMMIO_SSL_H 26 #define _COMMIO_SSL_H 27 28 int rb_setup_ssl_server(const char *cert, const char *keyfile, const char *dhfile); 29 int rb_init_ssl(void); 30 31 int rb_ssl_listen(rb_fde_t *F, int backlog); 32 int rb_init_prng(const char *path, prng_seed_t seed_type); 33 34 int rb_get_random(void *buf, size_t length); 35 const char *rb_get_ssl_strerror(rb_fde_t *F); 36 void rb_ssl_start_accepted(rb_fde_t *new_F, ACCB * cb, void *data, int timeout); 37 void rb_ssl_start_connected(rb_fde_t *F, CNCB * callback, void *data, int timeout); 38 void rb_connect_tcp_ssl(rb_fde_t *F, struct sockaddr *dest, struct sockaddr *clocal, int socklen, 39 CNCB * callback, void *data, int timeout); 40 void rb_ssl_accept_setup(rb_fde_t *F, rb_fde_t *new_F, struct sockaddr *st, int addrlen); 41 void rb_ssl_shutdown(rb_fde_t *F); 42 ssize_t rb_ssl_read(rb_fde_t *F, void *buf, size_t count); 43 ssize_t rb_ssl_write(rb_fde_t *F, const void *buf, size_t count); 44 void rb_get_ssl_info(char *buf, size_t length); 45 46 #endif 47