ssl-proxy.h revision 939451389b8e0ad529277b84fe51dab38a8cf77c
#ifndef __SSL_PROXY_H
#define __SSL_PROXY_H
struct ip_addr;
struct ssl_proxy;
extern int 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. */
void ssl_proxy_init(void);
void ssl_proxy_deinit(void);
#endif