]> granicus.if.org Git - curl/commitdiff
CURLOPT_TLSAUTH_TYPE.3: update description
authorSvyatoslav Mishyn <juef@openmailbox.org>
Sun, 6 Sep 2015 16:42:33 +0000 (19:42 +0300)
committerDaniel Stenberg <daniel@haxx.se>
Sun, 6 Sep 2015 21:12:17 +0000 (23:12 +0200)
Closes #414
Closes #413

docs/libcurl/opts/CURLOPT_TLSAUTH_TYPE.3

index b5cdd5bc381912afd6ec4b31f0e3acabf3353e0f..01e93afd4d7515b016198e2117c0b35952570758 100644 (file)
@@ -26,19 +26,19 @@ CURLOPT_TLSAUTH_TYPE \- set TLS authentication methods
 .SH SYNOPSIS
 #include <curl/curl.h>
 
-CURLcode curl_easy_setopt(CURL *handle, CURLOPT_TLSAUTH_TYPE, long bitmask);
+CURLcode curl_easy_setopt(CURL *handle, CURLOPT_TLSAUTH_TYPE, char *type);
 .SH DESCRIPTION
-Pass a long as parameter, which is set to a bitmask, to tell libcurl which
-authentication method(s) you want it to use for TLS authentication.
+Pass a pointer to a zero terminated string as parameter. The string
+should be the method of the TLS authentication. Supported method is "SRP".
 
-.IP CURL_TLSAUTH_SRP
+.IP SRP
 TLS-SRP authentication. Secure Remote Password authentication for TLS is
 defined in RFC5054 and provides mutual authentication if both sides have a
 shared secret. To use TLS-SRP, you must also set the
 \fICURLOPT_TLSAUTH_USERNAME(3)\fP and \fICURLOPT_TLSAUTH_PASSWORD(3)\fP
 options.
 .SH DEFAULT
-CURL_TLSAUTH_NONE (0)
+blank
 .SH PROTOCOLS
 All TLS-based protocols
 .SH EXAMPLE