aboutsummaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-07-27 08:33:32 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-07-27 08:33:32 +0000
commit86ff3194fa902e131c7a105a329202058327dcc7 (patch)
tree1faca2692dbab0996c25b47da9686b4246577f38 /lib/urldata.h
parentd460b601f94d44aba8f5ead44669566abc05dfd4 (diff)
added missing part for the qsossl support
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index 683c656d2..6332f093d 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -82,6 +82,10 @@
#include <nspr.h>
#endif
+#ifdef USE_QSOSSL
+#include <qsossl.h>
+#endif
+
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
@@ -177,6 +181,9 @@ struct ssl_connect_data {
#ifdef USE_NSS
PRFileDesc *handle;
#endif /* USE_NSS */
+#ifdef USE_QSOSSL
+ SSLHandle *handle;
+#endif /* USE_QSOSSL */
};
struct ssl_config_data {