Firewall Regen Support
[hcoop/domtool2.git] / openssl / openssl_sml.h
CommitLineData
559e89e9
AC
1#include "openssl/bio.h"
2#include "openssl/ssl.h"
3#include "openssl/err.h"
4
3b267643 5void OpenSSL_SML_init(void);
559e89e9
AC
6void OpenSSL_SML_load_error_strings(void);
7void OpenSSL_SML_load_BIO_strings(void);
07cc384c 8
559e89e9 9int OpenSSL_SML_get_error(void);
64a44dc0 10int OpenSSL_SML_should_retry(BIO *b);
559e89e9
AC
11const char *OpenSSL_SML_lib_error_string(int err);
12const char *OpenSSL_SML_func_error_string(int err);
13const char *OpenSSL_SML_reason_error_string(int err);
07cc384c
AC
14
15int OpenSSL_SML_read(BIO *b, void *data, int len);
559e89e9 16int OpenSSL_SML_write(BIO *b, const void *data, int len);
07cc384c 17
559e89e9 18BIO *OpenSSL_SML_new_connect(char *addr);
559e89e9 19int OpenSSL_SML_do_connect(BIO *b);
07cc384c 20
07cc384c
AC
21int OpenSSL_SML_do_accept(BIO *b);
22
60534712
AC
23int OpenSSL_SML_do_handshake(BIO *b);
24
07cc384c
AC
25void OpenSSL_SML_free_all(BIO *b);
26
3b267643
AC
27SSL_METHOD *OpenSSL_SML_SSLv23_method(void);
28
29SSL_CTX *OpenSSL_SML_CTX_new(SSL_METHOD *meth);
30void OpenSSL_SML_CTX_free(SSL_CTX *ctx);
31
32int OpenSSL_SML_load_verify_locations(SSL_CTX *ctx, const char *trust, const char *certs);
33
34BIO *OpenSSL_SML_new_ssl_connect(SSL_CTX *ctx);
35SSL *OpenSSL_SML_get_ssl(BIO *bio);
36int OpenSSL_SML_set_conn_hostname(BIO *bio, char *hostname);
37int OpenSSL_SML_set_accept_port(BIO *bio, char *port);
38
39int OpenSSL_SML_tcp_listen(int port, int qsize);
40int OpenSSL_SML_accept(int sock);
41BIO *OpenSSL_SML_new_socket(int sock);
42
43SSL *OpenSSL_SML_SSL_new(SSL_CTX *ctx);
44
45int OpenSSL_SML_SSL_shutdown(SSL *ssl);
46void OpenSSL_SML_shutdown(int sock);
47void OpenSSL_SML_SSL_set_bio(SSL *ssl, BIO *b1, BIO *b2);
48
49int OpenSSL_SML_use_PrivateKey_file(SSL_CTX *ctx, char *keyfile);
50
51int OpenSSL_SML_SSL_accept(SSL *ssl);
52
53int OpenSSL_SML_use_certificate_chain_file(SSL_CTX *ctx, char *keyfile);
54
55const char *OpenSSL_SML_get_peer_name(SSL *ssl);
60534712
AC
56
57BIO *OpenSSL_SML_new_ssl(SSL_CTX *ctx);
58BIO *OpenSSL_SML_new_accept(SSL_CTX *ctx, char *port);
59
60BIO *OpenSSL_SML_pop(BIO *b);
19f3c4e6 61BIO *OpenSSL_SML_next(BIO *b);
36e42cb8
AC
62
63int OpenSSL_SML_puts(BIO *b, const char *buf);