System.Curl.curl_proxytype
Delphi
curl_proxytype = (
CURLPROXY_HTTP = 0, { added in 7.10, new in 7.19.4 default is to use CONNECT HTTP/1.1 }
CURLPROXY_HTTP_1_0 = 1, { added in 7.19.4, force to use CONNECT HTTP/1.0 }
CURLPROXY_SOCKS4 = 4, { support added in 7.15.2, enum existed already in 7.10 }
CURLPROXY_SOCKS5 = 5, { added in 7.10 }
CURLPROXY_SOCKS4A = 6, { added in 7.18.0 }
CURLPROXY_SOCKS5_HOSTNAME = 7 { Use the SOCKS5 protocol but pass along the
host name rather than the IP address. added
in 7.18.0 }
); { this enum was added in 7.10 }
C++
enum DECLSPEC_DENUM curl_proxytype : unsigned char { CURLPROXY_HTTP, CURLPROXY_HTTP_1_0, CURLPROXY_SOCKS4 = 4, CURLPROXY_SOCKS5, CURLPROXY_SOCKS4A, CURLPROXY_SOCKS5_HOSTNAME };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | System.Curl.pas System.Curl.hpp |
System.Curl | System.Curl |
Description
Embarcadero Technologies does not currently have any additional information.