ssl-proxy.h revision 66251e6ab31e5cc153fe5cae608e416dacafe9cd
#ifndef __SSL_PROXY_H
#define __SSL_PROXY_H
/* establish SSL connection with the given fd, returns a new fd which you
must use from now on, or -1 if error occured. Unless -1 is returned,
the given fd must be simply forgotten. */
int ssl_proxy_new(int fd);
void ssl_proxy_init(void);
void ssl_proxy_deinit(void);
#endif