ssl-proxy.h revision d176f84ce5ca2073f4dfbafb457b9c74f6bf0d76
#ifndef SSL_PROXY_H
#define SSL_PROXY_H
struct ip_addr;
struct ssl_proxy;
extern bool ssl_initialized;
/* establish SSL connection with the given fd, returns a new fd which you
must use from now on, or -1 if error occurred. Unless -1 is returned,
the given fd must be simply forgotten. */
/* Return number of active SSL proxies */
unsigned int ssl_proxy_get_count(void) ATTR_PURE;
void ssl_proxy_init(void);
void ssl_proxy_deinit(void);
#endif