When provider
is set to "CURL", the following information applies.
Attributes
Names | Type | Description |
---|
option | string | A CURL option number, which can be determined by examining the curl.h header file and the set options page. |
Element Content
The content of the element is an option-specific string that depends on the option being set.
...
Code Block |
---|
language | xml |
---|
title | [Set transport timeout in seconds|https://curl.haxx.se/libcurl/c/CURLOPT_TIMEOUT.html] |
---|
|
<TransportOption provider="CURL" option="13">120</TransportOption> |
Code Block |
---|
language | xml |
---|
title | [Set HTTP proxy address|https://curl.haxx.se/libcurl/c/CURLOPT_PROXY.html] |
---|
|
<TransportOption provider="CURL" 10004">proxy.example.org:8080</TransportOption> |
Code Block |
---|
language | xml |
---|
title | Verify SSL certificate |
---|
|
<!-- Known to work with curl 7.26 and GnuTLS 2.12.20 (Debian 7.0) -->
<TransportOption provider="CURL" option="64">1</TransportOption> <!--SSL_VERIFYPEER -->
<TransportOption provider="CURL" option="81">2</TransportOption> <!-- SSL_VERIFY_HOST -->
<TransportOption provider="CURL" option="10065">/etc/ssl/certs/ca-certificates.crt</TransportOption> <!-- CAINFI --> |