Module: Curl
- Defined in:
- lib/curb.rb,
ext/curb.c
Defined Under Namespace
Modules: Err Classes: Easy, Multi, PostField, Upload
Constant Summary collapse
- CURB_VERSION =
rb_str_new2(CURB_VERSION)
- VERSION =
curlver
- CURL_VERSION =
curlver
- VERNUM =
curlvernum
- CURL_VERNUM =
curlvernum
- LONG_VERSION =
curllongver
- CURL_LONG_VERSION =
curllongver
- CURLINFO_TEXT =
Passed to on_debug handler to indicate that the data is informational text.
INT2FIX(CURLINFO_TEXT)
- CURLINFO_HEADER_IN =
Passed to on_debug handler to indicate that the data is header (or header-like) data received from the peer.
INT2FIX(CURLINFO_HEADER_IN)
- CURLINFO_HEADER_OUT =
Passed to on_debug handler to indicate that the data is header (or header-like) data sent to the peer.
INT2FIX(CURLINFO_HEADER_OUT)
- CURLINFO_DATA_IN =
Passed to on_debug handler to indicate that the data is protocol data received from the peer.
INT2FIX(CURLINFO_DATA_IN)
- CURLINFO_DATA_OUT =
Passed to on_debug handler to indicate that the data is protocol data sent to the peer.
INT2FIX(CURLINFO_DATA_OUT)
- CURLPROXY_HTTP =
INT2FIX(-1)
- CURLPROXY_SOCKS4 =
INT2FIX(-2)
- CURLPROXY_SOCKS5 =
INT2FIX(-2)
- CURLAUTH_BASIC =
INT2FIX(0)
- CURLAUTH_DIGEST =
INT2FIX(0)
- CURLAUTH_GSSNEGOTIATE =
INT2FIX(0)
- CURLAUTH_NTLM =
INT2FIX(0)
- CURLAUTH_ANYSAFE =
INT2FIX(0)
- CURLAUTH_ANY =
INT2FIX(0)
Class Method Summary collapse
-
.asyncdns? ⇒ Boolean
Returns true if the installed libcurl was built with support for asynchronous name lookups, which allows more exact timeouts (even on Windows) and less blocking when using the multi interface.
-
.conv? ⇒ Boolean
Returns true if the installed libcurl was built with support for character conversions.
-
.debug? ⇒ Boolean
Returns true if the installed libcurl was built with extra debug capabilities built-in.
-
.gssnegotiate? ⇒ Boolean
Returns true if the installed libcurl supports HTTP GSS-Negotiate.
-
.idn? ⇒ Boolean
Returns true if the installed libcurl was built with support for IDNA, domain names with international letters.
-
.ipv6? ⇒ Boolean
Returns true if the installed libcurl supports IPv6.
-
.kerberos4? ⇒ Boolean
Returns true if the installed libcurl supports Kerberos4 authentication with FTP connections.
-
.largefile? ⇒ Boolean
Returns true if the installed libcurl was built with support for large files.
-
.libz? ⇒ Boolean
Returns true if the installed libcurl supports HTTP deflate using libz.
-
.ntlm? ⇒ Boolean
Returns true if the installed libcurl supports HTTP NTLM.
-
.spnego? ⇒ Boolean
Returns true if the installed libcurl was built with support for SPNEGO authentication (Simple and Protected GSS-API Negotiation Mechanism, defined in RFC 2478).
-
.ssl? ⇒ Boolean
Returns true if the installed libcurl supports SSL connections.
-
.sspi? ⇒ Boolean
Returns true if the installed libcurl was built with support for SSPI.
Class Method Details
.asyncdns? ⇒ Boolean
Returns true if the installed libcurl was built with support for asynchronous name lookups, which allows more exact timeouts (even on Windows) and less blocking when using the multi interface. For libcurl versions < 7.10.7, always returns false.
127 128 129 130 131 132 133 134 |
# File 'ext/curb.c', line 127
static VALUE ruby_curl_asyncdns_q(VALUE mod) {
#ifdef HAVE_CURL_VERSION_ASYNCHDNS
curl_version_info_data *ver = curl_version_info(CURLVERSION_NOW);
return((ver->features & CURL_VERSION_ASYNCHDNS) ? Qtrue : Qfalse);
#else
return Qfalse;
#endif
}
|
.conv? ⇒ Boolean
Returns true if the installed libcurl was built with support for character conversions. For libcurl versions < 7.15.4, always returns false.
212 213 214 215 216 217 218 219 |
# File 'ext/curb.c', line 212
static VALUE ruby_curl_conv_q(VALUE mod) {
#ifdef HAVE_CURL_VERSION_CONV
curl_version_info_data *ver = curl_version_info(CURLVERSION_NOW);
return((ver->features & CURL_VERSION_CONV) ? Qtrue : Qfalse);
#else
return Qfalse;
#endif
}
|
.debug? ⇒ Boolean
Returns true if the installed libcurl was built with extra debug capabilities built-in. For libcurl versions < 7.10.6, always returns false.
109 110 111 112 113 114 115 116 |
# File 'ext/curb.c', line 109
static VALUE ruby_curl_debug_q(VALUE mod) {
#ifdef HAVE_CURL_VERSION_DEBUG
curl_version_info_data *ver = curl_version_info(CURLVERSION_NOW);
return((ver->features & CURL_VERSION_DEBUG) ? Qtrue : Qfalse);
#else
return Qfalse;
#endif
}
|
.gssnegotiate? ⇒ Boolean
Returns true if the installed libcurl supports HTTP GSS-Negotiate. For libcurl versions < 7.10.6, always returns false.
92 93 94 95 96 97 98 99 |
# File 'ext/curb.c', line 92
static VALUE ruby_curl_gssnegotiate_q(VALUE mod) {
#ifdef HAVE_CURL_VERSION_GSSNEGOTIATE
curl_version_info_data *ver = curl_version_info(CURLVERSION_NOW);
return((ver->features & CURL_VERSION_GSSNEGOTIATE) ? Qtrue : Qfalse);
#else
return Qfalse;
#endif
}
|
.idn? ⇒ Boolean
Returns true if the installed libcurl was built with support for IDNA, domain names with international letters. For libcurl versions < 7.12.0, always returns false.
177 178 179 180 181 182 183 184 |
# File 'ext/curb.c', line 177
static VALUE ruby_curl_idn_q(VALUE mod) {
#ifdef HAVE_CURL_VERSION_IDN
curl_version_info_data *ver = curl_version_info(CURLVERSION_NOW);
return((ver->features & CURL_VERSION_IDN) ? Qtrue : Qfalse);
#else
return Qfalse;
#endif
}
|
.ipv6? ⇒ Boolean
Returns true if the installed libcurl supports IPv6.
20 21 22 23 |
# File 'ext/curb.c', line 20
static VALUE ruby_curl_ipv6_q(VALUE mod) {
curl_version_info_data *ver = curl_version_info(CURLVERSION_NOW);
return((ver->features & CURL_VERSION_IPV6) ? Qtrue : Qfalse);
}
|
.kerberos4? ⇒ Boolean
Returns true if the installed libcurl supports Kerberos4 authentication with FTP connections.
32 33 34 35 |
# File 'ext/curb.c', line 32
static VALUE ruby_curl_kerberos4_q(VALUE mod) {
curl_version_info_data *ver = curl_version_info(CURLVERSION_NOW);
return((ver->features & CURL_VERSION_KERBEROS4) ? Qtrue : Qfalse);
}
|
.largefile? ⇒ Boolean
Returns true if the installed libcurl was built with support for large files. For libcurl versions < 7.11.1, always returns false.
160 161 162 163 164 165 166 167 |
# File 'ext/curb.c', line 160
static VALUE ruby_curl_largefile_q(VALUE mod) {
#ifdef HAVE_CURL_VERSION_LARGEFILE
curl_version_info_data *ver = curl_version_info(CURLVERSION_NOW);
return((ver->features & CURL_VERSION_LARGEFILE) ? Qtrue : Qfalse);
#else
return Qfalse;
#endif
}
|
.libz? ⇒ Boolean
Returns true if the installed libcurl supports HTTP deflate using libz. For libcurl versions < 7.10, always returns false.
60 61 62 63 64 65 66 67 |
# File 'ext/curb.c', line 60
static VALUE ruby_curl_libz_q(VALUE mod) {
#ifdef HAVE_CURL_VERSION_LIBZ
curl_version_info_data *ver = curl_version_info(CURLVERSION_NOW);
return((ver->features & CURL_VERSION_LIBZ) ? Qtrue : Qfalse);
#else
return Qfalse;
#endif
}
|
.ntlm? ⇒ Boolean
Returns true if the installed libcurl supports HTTP NTLM. For libcurl versions < 7.10.6, always returns false.
76 77 78 79 80 81 82 83 |
# File 'ext/curb.c', line 76
static VALUE ruby_curl_ntlm_q(VALUE mod) {
#ifdef HAVE_CURL_VERSION_NTLM
curl_version_info_data *ver = curl_version_info(CURLVERSION_NOW);
return((ver->features & CURL_VERSION_NTLM) ? Qtrue : Qfalse);
#else
return Qfalse;
#endif
}
|
.spnego? ⇒ Boolean
Returns true if the installed libcurl was built with support for SPNEGO authentication (Simple and Protected GSS-API Negotiation Mechanism, defined in RFC 2478). For libcurl versions < 7.10.8, always returns false.
144 145 146 147 148 149 150 151 |
# File 'ext/curb.c', line 144
static VALUE ruby_curl_spnego_q(VALUE mod) {
#ifdef HAVE_CURL_VERSION_SPNEGO
curl_version_info_data *ver = curl_version_info(CURLVERSION_NOW);
return((ver->features & CURL_VERSION_SPNEGO) ? Qtrue : Qfalse);
#else
return Qfalse;
#endif
}
|
.ssl? ⇒ Boolean
Returns true if the installed libcurl supports SSL connections. For libcurl versions < 7.10, always returns false.
44 45 46 47 48 49 50 51 |
# File 'ext/curb.c', line 44
static VALUE ruby_curl_ssl_q(VALUE mod) {
#ifdef HAVE_CURL_VERSION_SSL
curl_version_info_data *ver = curl_version_info(CURLVERSION_NOW);
return((ver->features & CURL_VERSION_SSL) ? Qtrue : Qfalse);
#else
return Qfalse;
#endif
}
|
.sspi? ⇒ Boolean
Returns true if the installed libcurl was built with support for SSPI. This is only available on Windows and makes libcurl use Windows-provided functions for NTLM authentication. It also allows libcurl to use the current user and the current user’s password without the app having to pass them on. For libcurl versions < 7.13.2, always returns false.
196 197 198 199 200 201 202 203 |
# File 'ext/curb.c', line 196
static VALUE ruby_curl_sspi_q(VALUE mod) {
#ifdef HAVE_CURL_VERSION_SSPI
curl_version_info_data *ver = curl_version_info(CURLVERSION_NOW);
return((ver->features & CURL_VERSION_SSPI) ? Qtrue : Qfalse);
#else
return Qfalse;
#endif
}
|