Qsmtp  0.30dev
tls.h
Go to the documentation of this file.
1 
4 #ifndef TLS_H
5 #define TLS_H
6 
7 #include <openssl/ssl.h>
8 
9 extern SSL *ssl;
10 
11 void ssl_free(SSL *myssl);
12 
13 void ssl_library_destroy();
14 
15 const char *ssl_error(void);
16 const char *ssl_strerror(void);
17 
18 #endif
void ssl_library_destroy()
free internal check memory of the SSL library
Definition: tls.c:33