aboutsummaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
authorEric Hu <ehu@directv.com>2010-12-03 10:23:45 -0800
committerDaniel Stenberg <daniel@haxx.se>2010-12-15 16:05:17 +0100
commit108d7693a443435e39d2278d5dbf842a80c6260c (patch)
tree43d46e0abf1df87da2f46a4576ae0fef2c69a4c1 /lib/urldata.h
parent00a5bd41bee6b32572355c0e9bd126bf1e44613c (diff)
Preparing for axTLS. Actual SSL API functions are only stubbed.
Added axTLS to autotool files and glue code to misc other files. axtls.h maps SSL API functions, but may change. axtls.c is just a stub file and will definitely change.
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index f4f678620..47f5f7962 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -120,6 +120,10 @@
#include <qsossl.h>
#endif
+#ifdef USE_AXTLS
+#include <axTLS/ssl.h>
+#endif /* USE_AXTLS */
+
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
@@ -268,6 +272,10 @@ struct ssl_connect_data {
#ifdef USE_QSOSSL
SSLHandle *handle;
#endif /* USE_QSOSSL */
+#ifdef USE_AXTLS
+ SSL_CTX* ssl_ctx;
+ SSL* ssl;
+#endif /* USE_AXTLS */
};
struct ssl_config_data {