diff options
author | Daniel Stenberg <daniel@haxx.se> | 2008-03-25 19:17:26 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2008-03-25 19:17:26 +0000 |
commit | a782c3e3681eb7aef0b29d2a40d3544666a91c7c (patch) | |
tree | 31d5a5a69a19242d836c6d5dc3b8c18adb8df812 /docs/libcurl | |
parent | 95bd901efe8c41bbfe7fa80c1c440c84dfe60fe1 (diff) |
spell it out loudly and clearly that CURLOPT_SSL_CTX_FUNCTION is only
functional if libcurl is built against OpenSSL
Diffstat (limited to 'docs/libcurl')
-rw-r--r-- | docs/libcurl/curl_easy_setopt.3 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/libcurl/curl_easy_setopt.3 b/docs/libcurl/curl_easy_setopt.3 index eb800e393..bcea2466a 100644 --- a/docs/libcurl/curl_easy_setopt.3 +++ b/docs/libcurl/curl_easy_setopt.3 @@ -310,6 +310,9 @@ Pass a pointer to whatever you want passed in to your \fICURLOPT_DEBUGFUNCTION\fP in the last void * argument. This pointer is not used by libcurl, it is only passed to the callback. .IP CURLOPT_SSL_CTX_FUNCTION +This option does only function for libcurl powered by OpenSSL. If libcurl was +built against another SSL library, this functionality is absent. + Function pointer that should match the following prototype: \fBCURLcode sslctxfun(CURL *curl, void *sslctx, void *parm);\fP This function gets called by libcurl just before the initialization of an SSL connection after having |