1
0
mirror of https://github.com/moparisthebest/curl synced 2024-11-16 22:45:03 -05:00
curl/docs/libcurl/opts
Thomas Ruecker c84f0250e3 CURLOPT_HTTP200ALIASES.3: Mainly SHOUTcast servers use "ICY 200"
Icecast versions 1.3.0 through 1.3.12 would reply with "ICY 200"
under certain conditions:

    client_wants_icy_headers (connection_t *con)
    {
            const char *val;

            if (!con)
                    return 1;

            val = get_user_agent (con);
            if (!val || !val[0] || strcmp (val, "(null)") == 0)
                    return 1;

            if (con->food.client->use_icy)
                    return 1;
            if (strncasecmp (val, "winamp", 6) == 0)
                    return 1;
            if (strncasecmp (val, "Shoutcast", 9) == 0)
                    return 1;

            return 0;
    }

So mainly if there is no 'user agent' or it is '(null)' or contains
'winamp' or 'Shoutcast'.

No mainstream distribution carries Icecast 1.3.x anymore, after all
it was released in 2002 and superseded by Icecast 2.x.
2015-03-31 23:53:56 +02:00
..
CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE.3 opts: more multi options as stand-alone man pages 2014-11-04 10:37:09 +01:00
CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE.3 opts: more multi options as stand-alone man pages 2014-11-04 10:37:09 +01:00
CURLMOPT_MAX_HOST_CONNECTIONS.3 opts: more multi options as stand-alone man pages 2014-11-04 10:37:09 +01:00
CURLMOPT_MAX_PIPELINE_LENGTH.3 opts: more multi options as stand-alone man pages 2014-11-04 10:37:09 +01:00
CURLMOPT_MAX_TOTAL_CONNECTIONS.3 opts: more multi options as stand-alone man pages 2014-11-04 10:37:09 +01:00
CURLMOPT_MAXCONNECTS.3 opts: more multi options as stand-alone man pages 2014-11-04 10:37:09 +01:00
CURLMOPT_PIPELINING_SERVER_BL.3 opts: Fix pipelining examples 2015-03-02 08:38:43 +01:00
CURLMOPT_PIPELINING_SITE_BL.3 opts: Fix pipelining examples 2015-03-02 08:38:43 +01:00
CURLMOPT_PIPELINING.3 opts: more multi options as stand-alone man pages 2014-11-04 10:37:09 +01:00
CURLMOPT_SOCKETDATA.3 opts: more multi options as stand-alone man pages 2014-11-04 10:37:09 +01:00
CURLMOPT_SOCKETFUNCTION.3 opts: more multi options as stand-alone man pages 2014-11-04 10:37:09 +01:00
CURLMOPT_TIMERDATA.3 opts: more multi options as stand-alone man pages 2014-11-04 10:37:09 +01:00
CURLMOPT_TIMERFUNCTION.3 opts: more multi options as stand-alone man pages 2014-11-04 10:37:09 +01:00
CURLOPT_ACCEPT_ENCODING.3 opts: added some "SEE ALSO" references 2014-10-29 22:38:39 +01:00
CURLOPT_ACCEPTTIMEOUT_MS.3 opts: the final bunch of options as man pages 2014-06-20 00:58:18 +02:00
CURLOPT_ADDRESS_SCOPE.3 Document type of argument for CURLOPT_ADDRESS_SCOPE. 2014-07-03 22:44:45 +02:00
CURLOPT_APPEND.3 opts: 29 more options as man pages 2014-06-18 00:30:02 +02:00
CURLOPT_AUTOREFERER.3 opts: 4 more man pages 2014-06-18 11:45:22 +02:00
CURLOPT_BUFFERSIZE.3 opts: 11 more man pages 2014-06-19 00:03:17 +02:00
CURLOPT_CAINFO.3 opts: CURLOPT_CAINFO availability depends on SSL engine 2015-02-03 08:41:25 +01:00
CURLOPT_CAPATH.3 gtls: add support for CURLOPT_CAPATH 2015-03-10 15:03:54 +01:00
CURLOPT_CERTINFO.3 gtls: implement CURLOPT_CERTINFO 2015-03-20 19:03:53 +01:00
CURLOPT_CHUNK_BGN_FUNCTION.3 CURLOPT_CHUNK_BGN_FUNCTION: fix typo 2014-07-19 21:27:38 +02:00
CURLOPT_CHUNK_DATA.3 opts: the final bunch of options as man pages 2014-06-20 00:58:18 +02:00
CURLOPT_CHUNK_END_FUNCTION.3 opts: the final bunch of options as man pages 2014-06-20 00:58:18 +02:00
CURLOPT_CLOSESOCKETDATA.3 opts: 7 more setopt options as individual man pages 2014-06-17 11:39:26 +02:00
CURLOPT_CLOSESOCKETFUNCTION.3 opts: 7 more setopt options as individual man pages 2014-06-17 11:39:26 +02:00
CURLOPT_CONNECT_ONLY.3 CURLOPT_CONNECT_ONLY.3: Removed "This option is implemented for..." text 2014-10-31 13:14:14 +00:00
CURLOPT_CONNECTTIMEOUT_MS.3 CURLOPT_*TIMEOUT.3: provide examples 2015-03-16 23:51:22 +01:00
CURLOPT_CONNECTTIMEOUT.3 CURLOPT_*TIMEOUT.3: provide examples 2015-03-16 23:51:22 +01:00
CURLOPT_CONV_FROM_NETWORK_FUNCTION.3 opts: 37 additional man pages 2014-06-19 17:59:13 +02:00
CURLOPT_CONV_FROM_UTF8_FUNCTION.3 opts: 37 additional man pages 2014-06-19 17:59:13 +02:00
CURLOPT_CONV_TO_NETWORK_FUNCTION.3 opts: 37 additional man pages 2014-06-19 17:59:13 +02:00
CURLOPT_COOKIE.3 CURLOPT_*.3: added lots of small example sections 2015-03-17 08:03:46 +01:00
CURLOPT_COOKIEFILE.3 opts: 29 more options as man pages 2014-06-18 00:30:02 +02:00
CURLOPT_COOKIEJAR.3 CURLOPT_COOKIE*: added more cross-references 2014-09-18 22:58:12 +02:00
CURLOPT_COOKIELIST.3 CURLOPT_COOKIELIST: Added "RELOAD" command 2014-09-25 16:28:17 +02:00
CURLOPT_COOKIESESSION.3 opts: 11 more man pages 2014-06-19 00:03:17 +02:00
CURLOPT_COPYPOSTFIELDS.3 opts: added examples 2014-10-21 08:58:24 +02:00
CURLOPT_CRLF.3 docs: Updated for commit 4bd860a001 and SMTP Unix line ending conversion 2014-11-26 23:32:38 +00:00
CURLOPT_CRLFILE.3 opts: document CURLE_OUT_OF_MEMORY among other return values 2014-06-20 23:43:46 +02:00
CURLOPT_CUSTOMREQUEST.3 CURLOPT_CUSTOMREQUEST.3: Fixed incomplete protocol list 2014-10-30 12:42:06 +00:00
CURLOPT_DEBUGDATA.3 opts: 11 more man pages 2014-06-19 00:03:17 +02:00
CURLOPT_DEBUGFUNCTION.3 docs: edited lots of libcurl docs for clarity 2014-10-21 10:26:40 +02:00
CURLOPT_DIRLISTONLY.3 CURLOPT_DIRLISTONLY.3: Added information about the usage in POP3 2014-10-30 12:42:05 +00:00
CURLOPT_DNS_CACHE_TIMEOUT.3 opts: 16 more man pages 2014-06-18 14:40:26 +02:00
CURLOPT_DNS_INTERFACE.3 opts: document CURLE_OUT_OF_MEMORY among other return values 2014-06-20 23:43:46 +02:00
CURLOPT_DNS_LOCAL_IP4.3 CURLOPT_DNS_LOCAL_IP4.3: better short desc 2014-06-21 00:04:13 +02:00
CURLOPT_DNS_LOCAL_IP6.3 opts: document CURLE_OUT_OF_MEMORY among other return values 2014-06-20 23:43:46 +02:00
CURLOPT_DNS_SERVERS.3 opts: document CURLE_OUT_OF_MEMORY among other return values 2014-06-20 23:43:46 +02:00
CURLOPT_DNS_USE_GLOBAL_CACHE.3 opts: 16 more man pages 2014-06-18 14:40:26 +02:00
CURLOPT_EGDSOCKET.3 opts: document CURLE_OUT_OF_MEMORY as RETURN VALUE 2014-06-18 23:28:13 +02:00
CURLOPT_ERRORBUFFER.3 docs: edited lots of libcurl docs for clarity 2014-10-21 10:26:40 +02:00
CURLOPT_EXPECT_100_TIMEOUT_MS.3 opts: various corrections 2014-06-20 01:10:34 +02:00
CURLOPT_FAILONERROR.3 opts: 29 more options as man pages 2014-06-18 00:30:02 +02:00
CURLOPT_FILETIME.3 opts: more man pages 2014-06-18 13:18:58 +02:00
CURLOPT_FNMATCH_DATA.3 opts: the final bunch of options as man pages 2014-06-20 00:58:18 +02:00
CURLOPT_FNMATCH_FUNCTION.3 opts: various corrections 2014-06-20 01:10:34 +02:00
CURLOPT_FOLLOWLOCATION.3 opts: added examples 2014-10-21 08:58:24 +02:00
CURLOPT_FORBID_REUSE.3 opts: more man pages 2014-06-18 13:18:58 +02:00
CURLOPT_FRESH_CONNECT.3 opts: more man pages 2014-06-18 13:18:58 +02:00
CURLOPT_FTP_ACCOUNT.3 opts: more man pages 2014-06-19 13:53:13 +02:00
CURLOPT_FTP_ALTERNATIVE_TO_USER.3 opts: document CURLE_OUT_OF_MEMORY among other return values 2014-06-20 23:43:46 +02:00
CURLOPT_FTP_CREATE_MISSING_DIRS.3 opts: document CURLE_OUT_OF_MEMORY among other return values 2014-06-20 23:43:46 +02:00
CURLOPT_FTP_FILEMETHOD.3 opts: more man pages 2014-06-19 13:53:13 +02:00
CURLOPT_FTP_RESPONSE_TIMEOUT.3 opts: more man pages 2014-06-19 13:53:13 +02:00
CURLOPT_FTP_SKIP_PASV_IP.3 opts: more man pages 2014-06-19 13:53:13 +02:00
CURLOPT_FTP_SSL_CCC.3 opts: 37 additional man pages 2014-06-19 17:59:13 +02:00
CURLOPT_FTP_USE_EPRT.3 opts: more man pages 2014-06-19 13:53:13 +02:00
CURLOPT_FTP_USE_EPSV.3 opts: 16 more man pages 2014-06-18 14:40:26 +02:00
CURLOPT_FTP_USE_PRET.3 opts: the final bunch of options as man pages 2014-06-20 00:58:18 +02:00
CURLOPT_FTPPORT.3 opts: document CURLE_OUT_OF_MEMORY as RETURN VALUE 2014-06-18 23:28:13 +02:00
CURLOPT_FTPSSLAUTH.3 opts: fixed some typos 2014-07-30 23:37:24 +02:00
CURLOPT_GSSAPI_DELEGATION.3 CURLOPT_GSSAPI_DELEGATION.3: Use GSS-API rather than GSSAPI 2014-10-31 12:48:48 +00:00
CURLOPT_HEADER.3 CURLOPT_*.3: more examples and edits 2015-03-17 08:57:31 +01:00
CURLOPT_HEADERDATA.3 opts: 29 more options as man pages 2014-06-18 00:30:02 +02:00
CURLOPT_HEADERFUNCTION.3 CURLOPT_*.3: more examples and edits 2015-03-17 08:57:31 +01:00
CURLOPT_HEADEROPT.3 CURLOPT_HEADEROPT.3: typo: do -> to 2014-07-31 17:52:08 +02:00
CURLOPT_HTTP200ALIASES.3 CURLOPT_HTTP200ALIASES.3: Mainly SHOUTcast servers use "ICY 200" 2015-03-31 23:53:56 +02:00
CURLOPT_HTTP_CONTENT_DECODING.3 opts: added some "SEE ALSO" references 2014-10-29 22:38:39 +01:00
CURLOPT_HTTP_TRANSFER_DECODING.3 opts: 37 additional man pages 2014-06-19 17:59:13 +02:00
CURLOPT_HTTP_VERSION.3 CURLOPT_HTTP_VERSION.3: CURL_HTTP_VERSION_2_0 added in 7.33.0 2015-02-02 13:17:20 +01:00
CURLOPT_HTTPAUTH.3 docs: Update SPNEGO and GSS-API related doc sections 2014-08-09 00:08:51 +01:00
CURLOPT_HTTPGET.3 opts: added examples 2014-10-21 08:58:24 +02:00
CURLOPT_HTTPHEADER.3 CURLOPT_HTTPHEADER.3: fix typo in recent commit 2015-03-24 21:48:02 +01:00
CURLOPT_HTTPPOST.3 opts: added examples 2014-10-21 08:58:24 +02:00
CURLOPT_HTTPPROXYTUNNEL.3 opts: more man pages 2014-06-18 13:18:58 +02:00
CURLOPT_IGNORE_CONTENT_LENGTH.3 CURLOPT_*.3: added lots of small example sections 2015-03-17 08:03:46 +01:00
CURLOPT_INFILESIZE_LARGE.3 CURLOPT_*.3: added lots of small example sections 2015-03-17 08:03:46 +01:00
CURLOPT_INFILESIZE.3 CURLOPT_*.3: added lots of small example sections 2015-03-17 08:03:46 +01:00
CURLOPT_INTERFACE.3 opts: document CURLE_OUT_OF_MEMORY as RETURN VALUE 2014-06-18 23:28:13 +02:00
CURLOPT_INTERLEAVEDATA.3 opts: the final bunch of options as man pages 2014-06-20 00:58:18 +02:00
CURLOPT_INTERLEAVEFUNCTION.3 opts: the final bunch of options as man pages 2014-06-20 00:58:18 +02:00
CURLOPT_IOCTLDATA.3 opts: 4 more options with stand-alone man pages 2014-06-17 09:54:58 +02:00
CURLOPT_IOCTLFUNCTION.3 opts: fixed some typos 2014-07-30 23:37:24 +02:00
CURLOPT_IPRESOLVE.3 opts: more man pages 2014-06-19 13:53:13 +02:00
CURLOPT_ISSUERCERT.3 opts: fixed some CURLOPT references so they get turned into links 2014-07-02 21:40:39 +02:00
CURLOPT_KEYPASSWD.3 opts: document CURLE_OUT_OF_MEMORY as RETURN VALUE 2014-06-18 23:28:13 +02:00
CURLOPT_KRBLEVEL.3 opts: document CURLE_OUT_OF_MEMORY as RETURN VALUE 2014-06-18 23:28:13 +02:00
CURLOPT_LOCALPORT.3 opts: more man pages 2014-06-19 13:53:13 +02:00
CURLOPT_LOCALPORTRANGE.3 opts: more man pages 2014-06-19 13:53:13 +02:00
CURLOPT_LOGIN_OPTIONS.3 opts: document CURLE_OUT_OF_MEMORY among other return values 2014-06-20 23:43:46 +02:00
CURLOPT_LOW_SPEED_LIMIT.3 CURLOPT_LOW_SPEED_LIMIT.3: language 2014-06-18 11:54:42 +02:00
CURLOPT_LOW_SPEED_TIME.3 opts: 29 more options as man pages 2014-06-18 00:30:02 +02:00
CURLOPT_MAIL_AUTH.3 opts: Use common wording for MAIL related names 2014-11-02 11:03:09 +00:00
CURLOPT_MAIL_FROM.3 opts: Use common wording for MAIL related names 2014-11-02 11:03:09 +00:00
CURLOPT_MAIL_RCPT.3 opts: Use common wording for MAIL related names 2014-11-02 11:03:09 +00:00
CURLOPT_MAX_RECV_SPEED_LARGE.3 opts: 37 additional man pages 2014-06-19 17:59:13 +02:00
CURLOPT_MAX_SEND_SPEED_LARGE.3 opts: 37 additional man pages 2014-06-19 17:59:13 +02:00
CURLOPT_MAXCONNECTS.3 CURLOPT_MAXCONNECTS.3: Reworked the description to be less confusing 2014-11-02 11:03:04 +00:00
CURLOPT_MAXFILESIZE_LARGE.3 opts: more man pages 2014-06-19 13:53:13 +02:00
CURLOPT_MAXFILESIZE.3 opts: more man pages 2014-06-19 13:53:13 +02:00
CURLOPT_MAXREDIRS.3 opts: added examples 2014-10-21 08:58:24 +02:00
CURLOPT_NETRC_FILE.3 opts: more man pages 2014-06-19 13:53:13 +02:00
CURLOPT_NETRC.3 opts: 29 more options as man pages 2014-06-18 00:30:02 +02:00
CURLOPT_NEW_DIRECTORY_PERMS.3 opts: fixed some typos 2014-06-20 23:31:06 +02:00
CURLOPT_NEW_FILE_PERMS.3 opts: 37 additional man pages 2014-06-19 17:59:13 +02:00
CURLOPT_NOBODY.3 opts: added examples 2014-10-21 08:58:24 +02:00
CURLOPT_NOPROGRESS.3 opts: added some DEFAULT and RETURN VALUE sections 2014-06-24 00:00:34 +02:00
CURLOPT_NOPROXY.3 opts: 37 additional man pages 2014-06-19 17:59:13 +02:00
CURLOPT_NOSIGNAL.3 opts: added some DEFAULT and RETURN VALUE sections 2014-06-24 00:00:34 +02:00
CURLOPT_OPENSOCKETDATA.3 opts: 7 more setopt options as individual man pages 2014-06-17 11:39:26 +02:00
CURLOPT_OPENSOCKETFUNCTION.3 opts: fixed some CURLOPT references so they get turned into links 2014-07-02 21:40:39 +02:00
CURLOPT_PASSWORD.3 opts: 37 additional man pages 2014-06-19 17:59:13 +02:00
CURLOPT_PATH_AS_IS.3 CURLOPT_PATH_AS_IS.3: add type 'long' to prototype 2015-03-24 21:46:07 +01:00
CURLOPT_PINNEDPUBLICKEY.3 SSL: Add PEM format support for public key pinning 2014-11-24 19:30:09 +01:00
CURLOPT_PORT.3 opts: 9 more options as separate man pages 2014-06-17 18:04:40 +02:00
CURLOPT_POST.3 opts: 29 more options as man pages 2014-06-18 00:30:02 +02:00
CURLOPT_POSTFIELDS.3 CURLOPT_POSTFIELDS.3: mention the COPYPOSTFIELDS option 2014-11-20 10:27:09 +01:00
CURLOPT_POSTFIELDSIZE_LARGE.3 opts: added examples 2014-10-21 08:58:24 +02:00
CURLOPT_POSTFIELDSIZE.3 opts: added examples 2014-10-21 08:58:24 +02:00
CURLOPT_POSTQUOTE.3 opts: 29 more options as man pages 2014-06-18 00:30:02 +02:00
CURLOPT_POSTREDIR.3 opts: added examples 2014-10-21 08:58:24 +02:00
CURLOPT_PREQUOTE.3 opts: 16 more man pages 2014-06-18 14:40:26 +02:00
CURLOPT_PRIVATE.3 CURLOPT_PRIVATE.3: provide an example 2015-03-16 23:56:11 +01:00
CURLOPT_PROGRESSDATA.3 opts: 7 more setopt options as individual man pages 2014-06-17 11:39:26 +02:00
CURLOPT_PROGRESSFUNCTION.3 opts: 7 more setopt options as individual man pages 2014-06-17 11:39:26 +02:00
CURLOPT_PROTOCOLS.3 docs: Updated for the SMB protocol 2014-11-30 21:53:30 +00:00
CURLOPT_PROXY_TRANSFER_MODE.3 opts: document CURLE_OUT_OF_MEMORY among other return values 2014-06-20 23:43:46 +02:00
CURLOPT_PROXY.3 opts: document CURLE_OUT_OF_MEMORY as RETURN VALUE 2014-06-18 23:28:13 +02:00
CURLOPT_PROXYAUTH.3 opts: document CURLE_OUT_OF_MEMORY among other return values 2014-06-20 23:43:46 +02:00
CURLOPT_PROXYHEADER.3 opts: various corrections 2014-06-20 01:10:34 +02:00
CURLOPT_PROXYPASSWORD.3 opts: Use common wording for user/password option names 2014-10-31 22:22:19 +00:00
CURLOPT_PROXYPORT.3 opts: more man pages 2014-06-18 13:18:58 +02:00
CURLOPT_PROXYTYPE.3 opts: various corrections 2014-06-20 01:10:34 +02:00
CURLOPT_PROXYUSERNAME.3 opts: Use common wording for TLS user/password option names 2014-11-02 11:03:06 +00:00
CURLOPT_PROXYUSERPWD.3 opts: Use common wording for TLS user/password option names 2014-11-02 11:03:06 +00:00
CURLOPT_PUT.3 opts: fixed some typos 2014-07-30 23:37:24 +02:00
CURLOPT_QUOTE.3 opts: 29 more options as man pages 2014-06-18 00:30:02 +02:00
CURLOPT_RANDOM_FILE.3 opts: document CURLE_OUT_OF_MEMORY as RETURN VALUE 2014-06-18 23:28:13 +02:00
CURLOPT_RANGE.3 opts: provide more and updated examples 2014-10-21 13:40:38 +02:00
CURLOPT_READDATA.3 CURLOPT_*.3: added lots of small example sections 2015-03-17 08:03:46 +01:00
CURLOPT_READFUNCTION.3 CURLOPT_*.3: more examples and edits 2015-03-17 08:57:31 +01:00
CURLOPT_REDIR_PROTOCOLS.3 docs: Updated for the SMB protocol 2014-11-30 21:53:30 +00:00
CURLOPT_REFERER.3 CURLOPT_*.3: added lots of small example sections 2015-03-17 08:03:46 +01:00
CURLOPT_RESOLVE.3 CURLOPT_RESOLVE.3: add an example 2014-10-23 14:34:41 +02:00
CURLOPT_RESUME_FROM_LARGE.3 opts: provide more and updated examples 2014-10-21 13:40:38 +02:00
CURLOPT_RESUME_FROM.3 opts: provide more and updated examples 2014-10-21 13:40:38 +02:00
CURLOPT_RTSP_CLIENT_CSEQ.3 opts: the final bunch of options as man pages 2014-06-20 00:58:18 +02:00
CURLOPT_RTSP_REQUEST.3 opts: fixed some typos 2014-06-20 23:31:06 +02:00
CURLOPT_RTSP_SERVER_CSEQ.3 opts: the final bunch of options as man pages 2014-06-20 00:58:18 +02:00
CURLOPT_RTSP_SESSION_ID.3 opts: the final bunch of options as man pages 2014-06-20 00:58:18 +02:00
CURLOPT_RTSP_STREAM_URI.3 opts: the final bunch of options as man pages 2014-06-20 00:58:18 +02:00
CURLOPT_RTSP_TRANSPORT.3 opts: the final bunch of options as man pages 2014-06-20 00:58:18 +02:00
CURLOPT_SASL_IR.3 CURLOPT_SASL_IR.3: Added supported mechanism information 2014-11-02 11:03:11 +00:00
CURLOPT_SEEKDATA.3 opts: 4 more options with stand-alone man pages 2014-06-17 09:54:58 +02:00
CURLOPT_SEEKFUNCTION.3 CURLOPT_SEEKFUNCTION.3: also when server closes a connection 2015-01-29 22:34:21 +01:00
CURLOPT_SHARE.3 opts: 11 more man pages 2014-06-19 00:03:17 +02:00
CURLOPT_SOCKOPTDATA.3 opts: 7 more setopt options as individual man pages 2014-06-17 11:39:26 +02:00
CURLOPT_SOCKOPTFUNCTION.3 opts: fixed some CURLOPT references so they get turned into links 2014-07-02 21:40:39 +02:00
CURLOPT_SOCKS5_GSSAPI_NEC.3 opts: 37 additional man pages 2014-06-19 17:59:13 +02:00
CURLOPT_SOCKS5_GSSAPI_SERVICE.3 opts: document CURLE_OUT_OF_MEMORY among other return values 2014-06-20 23:43:46 +02:00
CURLOPT_SSH_AUTH_TYPES.3 opts: fixed some typos 2014-06-20 23:31:06 +02:00
CURLOPT_SSH_HOST_PUBLIC_KEY_MD5.3 opts: various corrections 2014-06-20 01:10:34 +02:00
CURLOPT_SSH_KEYDATA.3 opts: fixed some typos 2014-07-30 23:37:24 +02:00
CURLOPT_SSH_KEYFUNCTION.3 opts: 37 additional man pages 2014-06-19 17:59:13 +02:00
CURLOPT_SSH_KNOWNHOSTS.3 opts: 37 additional man pages 2014-06-19 17:59:13 +02:00
CURLOPT_SSH_PRIVATE_KEYFILE.3 opts: document CURLE_OUT_OF_MEMORY among other return values 2014-06-20 23:43:46 +02:00
CURLOPT_SSH_PUBLIC_KEYFILE.3 opts: document CURLE_OUT_OF_MEMORY among other return values 2014-06-20 23:43:46 +02:00
CURLOPT_SSL_CIPHER_LIST.3 opts: document CURLE_OUT_OF_MEMORY as RETURN VALUE 2014-06-18 23:28:13 +02:00
CURLOPT_SSL_CTX_DATA.3 cyassl: CTX callback cosmetic changes and doc fix 2015-03-28 16:41:51 +01:00
CURLOPT_SSL_CTX_FUNCTION.3 cyassl: CTX callback cosmetic changes and doc fix 2015-03-28 16:41:51 +01:00
CURLOPT_SSL_ENABLE_ALPN.3 opts: the CURLOPT_SSL_ENABLE_*PN options are enabled by default 2014-06-21 20:03:35 +02:00
CURLOPT_SSL_ENABLE_NPN.3 opts: the CURLOPT_SSL_ENABLE_*PN options are enabled by default 2014-06-21 20:03:35 +02:00
CURLOPT_SSL_FALSESTART.3 darwinsssl: add support for TLS False Start 2015-03-21 12:22:56 -05:00
CURLOPT_SSL_OPTIONS.3 opts: the final bunch of options as man pages 2014-06-20 00:58:18 +02:00
CURLOPT_SSL_SESSIONID_CACHE.3 opts: 37 additional man pages 2014-06-19 17:59:13 +02:00
CURLOPT_SSL_VERIFYHOST.3 CURLOPT_*.3: added lots of small example sections 2015-03-17 08:03:46 +01:00
CURLOPT_SSL_VERIFYPEER.3 CURLOPT_*.3: added lots of small example sections 2015-03-17 08:03:46 +01:00
CURLOPT_SSL_VERIFYSTATUS.3 openssl: add support for the Certificate Status Request TLS extension 2015-01-22 23:25:23 +01:00
CURLOPT_SSLCERT.3 opts: document CURLE_OUT_OF_MEMORY as RETURN VALUE 2014-06-18 23:28:13 +02:00
CURLOPT_SSLCERTTYPE.3 opts: document CURLE_OUT_OF_MEMORY as RETURN VALUE 2014-06-18 23:28:13 +02:00
CURLOPT_SSLENGINE_DEFAULT.3 opts: document CURLE_OUT_OF_MEMORY as RETURN VALUE 2014-06-18 23:28:13 +02:00
CURLOPT_SSLENGINE.3 opts: document CURLE_OUT_OF_MEMORY as RETURN VALUE 2014-06-18 23:28:13 +02:00
CURLOPT_SSLKEY.3 opts: document CURLE_OUT_OF_MEMORY as RETURN VALUE 2014-06-18 23:28:13 +02:00
CURLOPT_SSLKEYTYPE.3 opts: document CURLE_OUT_OF_MEMORY as RETURN VALUE 2014-06-18 23:28:13 +02:00
CURLOPT_SSLVERSION.3 SSL: Remove SSLv3 from SSL default due to POODLE attack 2014-10-24 13:41:56 +02:00
CURLOPT_STDERR.3 CURLOPT_STDERR.3: added an example 2015-03-16 23:40:52 +01:00
CURLOPT_TCP_KEEPALIVE.3 CURLOPT_*.3: added lots of small example sections 2015-03-17 08:03:46 +01:00
CURLOPT_TCP_KEEPIDLE.3 CURLOPT_*.3: added lots of small example sections 2015-03-17 08:03:46 +01:00
CURLOPT_TCP_KEEPINTVL.3 CURLOPT_*.3: added lots of small example sections 2015-03-17 08:03:46 +01:00
CURLOPT_TCP_NODELAY.3 opts: more man pages 2014-06-19 13:53:13 +02:00
CURLOPT_TELNETOPTIONS.3 opts: more man pages 2014-06-18 13:18:58 +02:00
CURLOPT_TFTP_BLKSIZE.3 opts: 37 additional man pages 2014-06-19 17:59:13 +02:00
CURLOPT_TIMECONDITION.3 opts: 29 more options as man pages 2014-06-18 00:30:02 +02:00
CURLOPT_TIMEOUT_MS.3 CURLOPT_*TIMEOUT.3: provide examples 2015-03-16 23:51:22 +01:00
CURLOPT_TIMEOUT.3 CURLOPT_*TIMEOUT.3: provide examples 2015-03-16 23:51:22 +01:00
CURLOPT_TIMEVALUE.3 opts: 29 more options as man pages 2014-06-18 00:30:02 +02:00
CURLOPT_TLSAUTH_PASSWORD.3 opts: Use common wording for TLS user/password option names 2014-11-02 11:03:06 +00:00
CURLOPT_TLSAUTH_TYPE.3 opts: the final bunch of options as man pages 2014-06-20 00:58:18 +02:00
CURLOPT_TLSAUTH_USERNAME.3 opts: Use common wording for TLS user/password option names 2014-11-02 11:03:06 +00:00
CURLOPT_TRANSFER_ENCODING.3 opts: the final bunch of options as man pages 2014-06-20 00:58:18 +02:00
CURLOPT_TRANSFERTEXT.3 opts: 4 more man pages 2014-06-18 11:45:22 +02:00
CURLOPT_UNIX_SOCKET_PATH.3 code/docs: Use Unix rather than UNIX to avoid use of the trademark 2014-12-26 21:42:44 +00:00
CURLOPT_UNRESTRICTED_AUTH.3 CURLOPT_UNRESTRICTED_AUTH.3: added missing 'T' 2014-06-19 08:40:51 +02:00
CURLOPT_UPLOAD.3 opts: provide more and updated examples 2014-10-21 13:40:38 +02:00
CURLOPT_URL.3 CURLOPT_URL.3: spelling! 2015-03-20 13:49:45 +01:00
CURLOPT_USE_SSL.3 opts: provide more and updated examples 2014-10-21 13:40:38 +02:00
CURLOPT_USERAGENT.3 CURLOPT_USERAGENT.3: added an example 2015-03-16 23:41:45 +01:00
CURLOPT_USERNAME.3 opts: Use common wording for user/password option names 2014-10-31 22:22:19 +00:00
CURLOPT_USERPWD.3 opts: Use common wording for user/password option names 2014-10-31 22:22:19 +00:00
CURLOPT_VERBOSE.3 opts: provide more and updated examples 2014-10-21 13:40:38 +02:00
CURLOPT_WILDCARDMATCH.3 opts: added some DEFAULT and RETURN VALUE sections 2014-06-24 00:00:34 +02:00
CURLOPT_WRITEDATA.3 CURLOPT_*.3: more examples and edits 2015-03-17 08:57:31 +01:00
CURLOPT_WRITEFUNCTION.3 CURLOPT_WRITEFUNCTION: changed the order of some sentences 2014-06-17 00:02:22 +02:00
CURLOPT_XFERINFODATA.3 opts: 3 more options as man pages 2014-06-17 16:48:16 +02:00
CURLOPT_XFERINFOFUNCTION.3 opts: 3 more options as man pages 2014-06-17 16:48:16 +02:00
CURLOPT_XOAUTH2_BEARER.3 CURLOPT_XOAUTH2_BEARER.3: Corrected the OAuth version number 2014-11-02 11:03:13 +00:00
Makefile.am CURLOPT_PATH_AS_IS: added 2015-03-24 10:31:58 +01:00
template.3 opts template: provide a filled in error code phrase 2014-06-17 11:38:51 +02:00