1 #ifndef TLS_H
2 #define TLS_H
3 
4 #include <openssl/ssl.h>
5 
6 extern int smtps;
7 extern SSL *ssl;
8 
9 void ssl_free(SSL *myssl);
10 void ssl_exit(int status);
11 # define _exit ssl_exit
12 
13 const char *ssl_error();
14 const char *ssl_error_str();
15 
16 #endif
17