From: Daniel Stenberg Date: Fri, 27 Jul 2007 08:33:32 +0000 (+0000) Subject: added missing part for the qsossl support X-Git-Tag: curl-7_17_0-preldapfix~53 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=86ff3194fa902e131c7a105a329202058327dcc7;p=thirdparty%2Fcurl.git added missing part for the qsossl support --- diff --git a/lib/urldata.h b/lib/urldata.h index 683c656d25..6332f093db 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -82,6 +82,10 @@ #include #endif +#ifdef USE_QSOSSL +#include +#endif + #ifdef HAVE_NETINET_IN_H #include #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 {