35 lines
1.6 KiB
C
35 lines
1.6 KiB
C
#pragma once
|
|
#include <event2/event.h>
|
|
#include <tfe_future.h>
|
|
#include <tfe_types.h>
|
|
|
|
|
|
|
|
struct ssl_stream;
|
|
|
|
struct ssl_mgr;
|
|
struct ssl_mgr * ssl_manager_init(const char * ini_profile, const char * section, struct event_base * ev_base_gc,
|
|
void * logger);
|
|
void ssl_manager_destroy(struct ssl_mgr * mgr);
|
|
|
|
struct ssl_stream * ssl_upstream_create_result_release_stream(future_result_t * result);
|
|
struct bufferevent * ssl_upstream_create_result_release_bev(future_result_t * result);
|
|
void ssl_async_upstream_create(struct future * f, struct ssl_mgr * mgr, evutil_socket_t fd_upstream,
|
|
evutil_socket_t fd_downstream, unsigned int thread_id);
|
|
|
|
struct ssl_stream * ssl_downstream_create_result_release_stream(future_result_t * result);
|
|
struct bufferevent * ssl_downstream_create_result_release_bev(future_result_t * result);
|
|
void ssl_async_downstream_create(struct future * f, struct ssl_mgr * mgr, struct ssl_stream * upstream,
|
|
evutil_socket_t fd_downstream, int keyring_id, unsigned int thread_id);
|
|
void ssl_stream_free_and_close_fd(struct ssl_stream * stream, struct event_base * evbase, evutil_socket_t fd);
|
|
void ssl_stream_log_error(struct bufferevent * bev, enum tfe_conn_dir dir, void* logger);
|
|
|
|
//Follow functions are allowed to call during runtime.
|
|
int ssl_manager_add_trust_ca(struct ssl_mgr* mgr, const char* pem_file);
|
|
int ssl_manager_del_trust_ca(struct ssl_mgr* mgr, const char* pem_file);
|
|
int ssl_manager_add_crl(struct ssl_mgr* mgr, const char* pem_file);
|
|
int ssl_manager_del_crl(struct ssl_mgr* mgr, const char* pem_file);
|
|
void ssl_manager_reset_trust_ca(struct ssl_mgr* mgr);
|
|
|
|
|