diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-07-27 08:33:32 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-07-27 08:33:32 +0000 |
commit | 86ff3194fa902e131c7a105a329202058327dcc7 (patch) | |
tree | 1faca2692dbab0996c25b47da9686b4246577f38 /lib | |
parent | d460b601f94d44aba8f5ead44669566abc05dfd4 (diff) |
added missing part for the qsossl support
Diffstat (limited to 'lib')
-rw-r--r-- | lib/urldata.h | 7 |
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 { |