summaryrefslogtreecommitdiffstats
path: root/tls.h
diff options
context:
space:
mode:
Diffstat (limited to 'tls.h')
-rw-r--r--tls.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/tls.h b/tls.h
index a4650af..808b115 100644
--- a/tls.h
+++ b/tls.h
@@ -3,6 +3,11 @@
3 3
4#include <openssl/ssl.h> 4#include <openssl/ssl.h>
5 5
6/* ECC: make sure we have at least 1.0.0 */
7#if !defined(OPENSSL_NO_EC) && defined(TLSEXT_ECPOINTFORMAT_uncompressed)
8#define HAVE_ECC
9#endif
10
6extern int smtps; 11extern int smtps;
7extern SSL *ssl; 12extern SSL *ssl;
8 13