|
void | buffer_init (buffer_t *buf) |
|
void | buffer_close (buffer_t *buf) |
|
unsigned int | buffer_used (buffer_t *buf) |
|
unsigned int | buffer_unused (buffer_t *buf) |
|
int | buffer_full (buffer_t *buf) |
|
int | buffer_notfull (buffer_t *buf) |
|
int | buffer_empty (buffer_t *buf) |
|
int | buffer_notempty (buffer_t *buf) |
|
unsigned long | buffer_total_in (buffer_t *buf) |
|
unsigned long | buffer_total_out (buffer_t *buf) |
|
int | buffer_from_fd (buffer_t *buf, int fd) |
|
int | buffer_to_fd (buffer_t *buf, int fd) |
|
void | buffer_from_SSL (buffer_t *buf, SSL *ssl) |
|
void | buffer_to_SSL (buffer_t *buf, SSL *ssl) |
|
void | buffer_from_BIO (buffer_t *buf, BIO *bio) |
|
void | buffer_to_BIO (buffer_t *buf, BIO *bio) |
|
void | cb_ssl_info (const SSL *s, int where, int ret) |
|
void | cb_ssl_info_set_output (FILE *fp) |
|
int | cb_ssl_verify (int ok, X509_STORE_CTX *ctx) |
|
void | cb_ssl_verify_set_output (FILE *fp) |
|
void | cb_ssl_verify_set_depth (unsigned int verify_depth) |
|
void | cb_ssl_verify_set_level (unsigned int level) |
|
RSA * | cb_generate_tmp_rsa (SSL *s, int is_export, int keylength) |
|
void | state_machine_init (state_machine_t *machine) |
|
void | state_machine_close (state_machine_t *machine) |
|
buffer_t * | state_machine_get_buffer (state_machine_t *machine, sm_buffer_t type) |
|
SSL * | state_machine_get_SSL (state_machine_t *machine) |
|
int | state_machine_set_SSL (state_machine_t *machine, SSL *ssl, int is_server) |
|
int | state_machine_churn (state_machine_t *machine) |
|
int | state_machine_close_clean (state_machine_t *machine) |
|
int | state_machine_close_dirty (state_machine_t *machine) |
|
int | ip_initialise (void) |
|
int | ip_create_listener_split (const char *ip, unsigned short port) |
|
int | ip_create_connection_split (const char *ip, unsigned short port) |
|
int | ip_create_listener (const char *address) |
|
int | ip_create_connection (const char *address) |
|
int | ip_parse_address (const char *address, const char **parsed_ip, unsigned short *port, int accept_all_ip) |
|
int | ip_accept_connection (int listen_fd) |
|
int | int_strtoul (const char *str, unsigned long *val) |
|
char * | int_strstr (const char *haystack, const char *needle) |
|