Class: Patron::Session
- Inherits:
-
Object
- Object
- Patron::Session
- Defined in:
- lib/patron/session.rb,
ext/patron/session_ext.c
Overview
This class represents multiple request/response transactions with an HTTP server. This is the primary API for Patron.
Instance Attribute Summary collapse
-
#auth_type ⇒ Symbol
The authentication type for the request (
:basic
,:digest
or:token
). -
#automatic_content_encoding ⇒ Boolean
Support automatic Content-Encoding decompression and set liberal Accept-Encoding headers.
-
#base_url ⇒ String
The URL to prepend to all requests.
-
#buffer_size ⇒ Integer?
Set the buffer size for this request.
-
#cacert ⇒ String
Path to the CA file used for certificate verification, or
nil
if CURL default is used. -
#connect_timeout ⇒ Integer
HTTP connection timeout in seconds.
-
#default_response_charset ⇒ String?
Sets the name of the charset to assume for the response.
-
#dns_cache_timeout ⇒ Integer
DNS cache timeout in seconds.
-
#download_byte_limit ⇒ Fixnum?
The amount of bytes downloaded.
-
#force_ipv4 ⇒ Boolean
Force curl to use IPv4.
-
#headers ⇒ Hash
Headers used in all requests.
-
#http_version ⇒ String
The supported values are "None", "HTTPv1_0", "HTTPv1_1", "HTTPv2_0", "HTTPv2_TLS", and "HTTPv2_PRIOR".
-
#ignore_content_length ⇒ Boolean
Whether Content-Range and Content-Length headers should be ignored.
-
#insecure ⇒ Boolean
Please consider twice before using this option..
-
#low_speed_limit ⇒ Integer?
The average transfer speed in bytes per second that the transfer should be below during
low_speed_time
seconds for libcurl to consider it to be too slow and abort. -
#low_speed_time ⇒ Integer?
The time in number seconds that the transfer speed should be below the
low_speed_limit
for the library to consider it too slow and abort. -
#max_redirects ⇒ Integer
Maximum number of redirects to follow Set to 0 to disable and -1 to follow all redirects.
-
#password ⇒ String?
Password for http authentication.
-
#progress_callback ⇒ #call?
Callable object that will be called with 4 arguments during request/response execution -
dltotal
,dlnow
,ultotal
,ulnow
. -
#proxy ⇒ String
Proxy URL in cURL format ('hostname:8080').
-
#proxy_type ⇒ Integer
Proxy type (default is HTTP).
-
#ssl_version ⇒ String
The supported values are nil, "SSLv2", "SSLv3", and "TLSv1".
-
#timeout ⇒ Integer
HTTP transaction timeout in seconds.
-
#username ⇒ String?
Username for http authentication.
WebDAV methods collapse
-
#copy(url, dest, headers = {}) ⇒ Patron::Response
Sends a WebDAV COPY request to the specified +url+.
Basic API methods collapse
-
#build_request(action, url, headers, options = {}) ⇒ Patron::Request
Builds a request object that can be used by ++handle_request++ Note that internally, ++handle_request++ uses instance variables of the Request object, and not it's public methods.
-
#request(action, url, headers, options = {}) ⇒ Patron::Response
Send an HTTP request to the specified
url
. -
#response_class ⇒ #new
Returns the class that will be used to build a Response from a Curl call.
Class Method Summary collapse
-
.escape(value) ⇒ Object
Escapes the provided string using libCURL URL escaping functions.
-
.unescape(value) ⇒ Object
Unescapes the provided string using libCURL URL escaping functions.
Instance Method Summary collapse
-
#delete(url, headers = {}) ⇒ Patron::Response
Same as #get but performs a DELETE request.
-
#enable_debug(file = nil) ⇒ Object
Enable debug output to stderr or to specified
file
. -
#escape(value) ⇒ Object
(also: #urlencode)
Escapes the provided string using libCURL URL escaping functions.
-
#get(url, headers = {}) ⇒ Patron::Response
Retrieve the contents of the specified
url
optionally sending the specified headers. -
#get_file(url, filename, headers = {}) ⇒ Patron::Response
Retrieve the contents of the specified +url+ as with #get, but the content at the URL is downloaded directly into the specified file.
-
#handle_cookies(file_path = nil) ⇒ Object
Turn on cookie handling for this session, storing them in memory by default or in +file+ if specified.
-
#head(url, headers = {}) ⇒ Patron::Response
Same as #get but performs a HEAD request.
-
#initialize(args = {}) { ... } ⇒ Session
constructor
Create a new Session object for performing requests.
-
#interrupt ⇒ void
Interrupt any currently executing request.
-
#patch(url, data, headers = {}) ⇒ Patron::Response
Uploads the passed
data
to the specifiedurl
using an HTTP PATCH. -
#post(url, data, headers = {}) ⇒ Patron::Response
Uploads the passed
data
to the specifiedurl
using an HTTP POST. -
#post_file(url, filename, headers = {}) ⇒ Patron::Response
Uploads the contents of
file
to the specifiedurl
using an HTTP POST. -
#post_multipart(url, data, filename, headers = {}) ⇒ Patron::Response
Uploads the contents of
filename
to the specifiedurl
using an HTTP POST, in combination with given form fields passed indata
. -
#put(url, data, headers = {}) ⇒ Patron::Response
Uploads the passed
data
to the specifiedurl
using an HTTP PUT. -
#put_file(url, filename, headers = {}) ⇒ Patron::Response
Uploads the contents of
file
to the specifiedurl
using an HTTP PUT. -
#reset ⇒ void
Interrupt any currently executing request.
-
#unescape(value) ⇒ Object
(also: #urldecode)
Unescapes the provided string using libCURL URL escaping functions.
Constructor Details
#initialize(args = {}) { ... } ⇒ Session
Create a new Session object for performing requests.
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 |
# File 'lib/patron/session.rb', line 115 def initialize(args = {}, &block) # Allows accessors to be set via constructor hash. Ex: {:base_url => 'www.home.com'} args.each do |attribute, value| send("#{attribute}=", value) end # Allows accessors to be set via block. if block_given? yield self end @headers ||= {} @headers['User-Agent'] ||= Patron.user_agent_string @timeout ||= 5 @connect_timeout ||= 1 @max_redirects ||= 5 @auth_type ||= :basic @force_ipv4 ||= false end |
Instance Attribute Details
#auth_type ⇒ Symbol
Returns the authentication type for the request (:basic
, :digest
or :token
).
53 54 55 |
# File 'lib/patron/session.rb', line 53 def auth_type @auth_type end |
#automatic_content_encoding ⇒ Boolean
Returns Support automatic Content-Encoding decompression and set liberal Accept-Encoding headers.
89 90 91 |
# File 'lib/patron/session.rb', line 89 def automatic_content_encoding @automatic_content_encoding end |
#base_url ⇒ String
Returns The URL to prepend to all requests.
31 32 33 |
# File 'lib/patron/session.rb', line 31 def base_url @base_url end |
#buffer_size ⇒ Integer?
Set the buffer size for this request. This option will only be set if buffer_size is non-nil
76 77 78 |
# File 'lib/patron/session.rb', line 76 def buffer_size @buffer_size end |
#cacert ⇒ String
Returns path to the CA file used for certificate verification, or nil
if CURL default is used.
68 69 70 |
# File 'lib/patron/session.rb', line 68 def cacert @cacert end |
#connect_timeout ⇒ Integer
Returns HTTP connection timeout in seconds. Defaults to 1 second.
17 18 19 |
# File 'lib/patron/session.rb', line 17 def connect_timeout @connect_timeout end |
#default_response_charset ⇒ String?
Sets the name of the charset to assume for the response. The argument should be a String that
is an acceptable argument for Encoding.find()
in Ruby. The variable will only be used if the
response does not specify a charset in it's Content-Type
header already, if it does that charset
will take precedence.
83 84 85 |
# File 'lib/patron/session.rb', line 83 def default_response_charset @default_response_charset end |
#dns_cache_timeout ⇒ Integer
Returns DNS cache timeout in seconds. Defaults to 60 seconds. Set to 0 for no cache, or to -1 for indefinite caching.
23 24 25 |
# File 'lib/patron/session.rb', line 23 def dns_cache_timeout @dns_cache_timeout end |
#download_byte_limit ⇒ Fixnum?
Returns the amount of bytes downloaded. If it is set to nil (default) no limit will be applied. Note that this only works on libCURL 7.34 and newer.
94 95 96 |
# File 'lib/patron/session.rb', line 94 def download_byte_limit @download_byte_limit end |
#force_ipv4 ⇒ Boolean
Returns Force curl to use IPv4.
86 87 88 |
# File 'lib/patron/session.rb', line 86 def force_ipv4 @force_ipv4 end |
#headers ⇒ Hash
Returns headers used in all requests.
49 50 51 |
# File 'lib/patron/session.rb', line 49 def headers @headers end |
#http_version ⇒ String
The supported values are "None", "HTTPv1_0", "HTTPv1_1", "HTTPv2_0", "HTTPv2_TLS", and "HTTPv2_PRIOR".
65 66 67 |
# File 'lib/patron/session.rb', line 65 def http_version @http_version end |
#ignore_content_length ⇒ Boolean
Returns whether Content-Range and Content-Length headers should be ignored.
71 72 73 |
# File 'lib/patron/session.rb', line 71 def ignore_content_length @ignore_content_length end |
#insecure ⇒ Boolean
Please consider twice before using this option..
57 58 59 |
# File 'lib/patron/session.rb', line 57 def insecure @insecure end |
#low_speed_limit ⇒ Integer?
Returns the average transfer speed in bytes per second that the transfer should be below
during low_speed_time
seconds for libcurl to consider it to be too slow and abort.
104 105 106 |
# File 'lib/patron/session.rb', line 104 def low_speed_limit @low_speed_limit end |
#low_speed_time ⇒ Integer?
Returns the time in number seconds that the transfer speed should be below the
low_speed_limit
for the library to consider it too slow and abort.
99 100 101 |
# File 'lib/patron/session.rb', line 99 def low_speed_time @low_speed_time end |
#max_redirects ⇒ Integer
Maximum number of redirects to follow Set to 0 to disable and -1 to follow all redirects. Defaults to 5.
28 29 30 |
# File 'lib/patron/session.rb', line 28 def max_redirects @max_redirects end |
#password ⇒ String?
Password for http authentication
39 40 41 |
# File 'lib/patron/session.rb', line 39 def password @password end |
#progress_callback ⇒ #call?
Returns callable object that will be called with 4 arguments
during request/response execution - dltotal
, dlnow
, ultotal
, ulnow
.
All these arguments are in bytes.
109 110 111 |
# File 'lib/patron/session.rb', line 109 def progress_callback @progress_callback end |
#proxy ⇒ String
Returns Proxy URL in cURL format ('hostname:8080').
42 43 44 |
# File 'lib/patron/session.rb', line 42 def proxy @proxy end |
#proxy_type ⇒ Integer
Returns Proxy type (default is HTTP).
46 47 48 |
# File 'lib/patron/session.rb', line 46 def proxy_type @proxy_type end |
#ssl_version ⇒ String
The supported values are nil, "SSLv2", "SSLv3", and "TLSv1".
61 62 63 |
# File 'lib/patron/session.rb', line 61 def ssl_version @ssl_version end |
#timeout ⇒ Integer
Returns HTTP transaction timeout in seconds. Defaults to 5 seconds.
20 21 22 |
# File 'lib/patron/session.rb', line 20 def timeout @timeout end |
#username ⇒ String?
Username for http authentication
35 36 37 |
# File 'lib/patron/session.rb', line 35 def username @username end |
Class Method Details
.escape(value) ⇒ Object
Escapes the provided string using libCURL URL escaping functions.
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
# File 'ext/patron/session_ext.c', line 282
static VALUE session_escape(VALUE self, VALUE value) {
VALUE string = StringValue(value);
char* escaped = NULL;
VALUE retval = Qnil;
#if LIBCURL_VERSION_NUM >= 0x075200
/* this is libCURLv7.82.0 or later, the curl parameter is ignored */
CURL *curl = NULL;
#else
CURL* curl = curl_easy_init();
#endif
escaped = curl_easy_escape(curl,
RSTRING_PTR(string),
(int) RSTRING_LEN(string));
retval = rb_str_new2(escaped);
#if LIBCURL_VERSION_NUM >= 0x075200
/* this is libCURLv7.82.0 or later, the curl parameter is ignored */
#else
curl_easy_cleanup(curl);
#endif
curl_free(escaped);
return retval;
}
|
.unescape(value) ⇒ Object
Unescapes the provided string using libCURL URL escaping functions.
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 |
# File 'ext/patron/session_ext.c', line 315
static VALUE session_unescape(VALUE self, VALUE value) {
VALUE string = StringValue(value);
char* unescaped = NULL;
VALUE retval = Qnil;
#if LIBCURL_VERSION_NUM >= 0x075200
/* this is libCURLv7.82.0 or later, the curl parameter is ignored */
CURL *curl = NULL;
#else
CURL *curl = curl_easy_init();
#endif
unescaped = curl_easy_unescape(curl,
RSTRING_PTR(string),
(int) RSTRING_LEN(string),
NULL);
retval = rb_str_new2(unescaped);
curl_free(unescaped);
#if LIBCURL_VERSION_NUM >= 0x075200
/* this is libCURLv7.82.0 or later, the curl parameter is ignored */
#else
curl_easy_cleanup(curl);
#endif
return retval;
}
|
Instance Method Details
#build_request(action, url, headers, options = {}) ⇒ Patron::Request
Builds a request object that can be used by ++handle_request++ Note that internally, ++handle_request++ uses instance variables of the Request object, and not it's public methods.
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 |
# File 'lib/patron/session.rb', line 355 def build_request(action, url, headers, = {}) # If the Expect header isn't set uploads are really slow headers['Expect'] ||= '' Request.new.tap do |req| req.action = action req.headers = self.headers.merge headers req.automatic_content_encoding = .fetch :automatic_content_encoding, self.automatic_content_encoding req.timeout = .fetch :timeout, self.timeout req.connect_timeout = .fetch :connect_timeout, self.connect_timeout req.dns_cache_timeout = .fetch :dns_cache_timeout, self.dns_cache_timeout req.low_speed_time = .fetch :low_speed_time, self.low_speed_time req.low_speed_limit = .fetch :low_speed_limit, self.low_speed_limit req.force_ipv4 = .fetch :force_ipv4, self.force_ipv4 req.max_redirects = .fetch :max_redirects, self.max_redirects req.username = .fetch :username, self.username req.password = .fetch :password, self.password req.proxy = .fetch :proxy, self.proxy req.proxy_type = .fetch :proxy_type, self.proxy_type req.auth_type = .fetch :auth_type, self.auth_type req.insecure = .fetch :insecure, self.insecure req.ssl_version = .fetch :ssl_version, self.ssl_version req.http_version = .fetch :http_version, self.http_version req.cacert = .fetch :cacert, self.cacert req.ignore_content_length = .fetch :ignore_content_length, self.ignore_content_length req.buffer_size = .fetch :buffer_size, self.buffer_size req.download_byte_limit = .fetch :download_byte_limit, self.download_byte_limit req.progress_callback = .fetch :progress_callback, self.progress_callback req.multipart = [:multipart] req.upload_data = [:data] req.file_name = [:file] base_url = self.base_url.to_s url = url.to_s raise ArgumentError, "Empty URL" if base_url.empty? && url.empty? uri = URI.parse(base_url.empty? ? url : File.join(base_url, url)) query = uri.query.to_s.split('&') query += [:query].is_a?(Hash) ? Util.build_query_pairs_from_hash([:query]) : [:query].to_s.split('&') uri.query = query.join('&') uri.query = nil if uri.query.empty? url = uri.to_s req.url = url end end |
#copy(url, dest, headers = {}) ⇒ Patron::Response
Sends a WebDAV COPY request to the specified +url+.
311 312 313 314 |
# File 'lib/patron/session.rb', line 311 def copy(url, dest, headers = {}) headers['Destination'] = dest request(:copy, url, headers) end |
#delete(url, headers = {}) ⇒ Patron::Response
Same as #get but performs a DELETE request.
Notice: this method doesn't accept any data
argument: if you need to send data with
a delete request (as might be needed for ElasticSearch), please, use the #request method.
221 222 223 |
# File 'lib/patron/session.rb', line 221 def delete(url, headers = {}) request(:delete, url, headers) end |
#enable_debug(file = nil) ⇒ Object
Change to an assignment of an IO object
Enable debug output to stderr or to specified file
.
169 170 171 172 |
# File 'lib/patron/session.rb', line 169 def enable_debug(file = nil) set_debug_file(file.to_s) self end |
#escape(value) ⇒ Object Also known as: urlencode
Escapes the provided string using libCURL URL escaping functions.
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
# File 'ext/patron/session_ext.c', line 282
static VALUE session_escape(VALUE self, VALUE value) {
VALUE string = StringValue(value);
char* escaped = NULL;
VALUE retval = Qnil;
#if LIBCURL_VERSION_NUM >= 0x075200
/* this is libCURLv7.82.0 or later, the curl parameter is ignored */
CURL *curl = NULL;
#else
CURL* curl = curl_easy_init();
#endif
escaped = curl_easy_escape(curl,
RSTRING_PTR(string),
(int) RSTRING_LEN(string));
retval = rb_str_new2(escaped);
#if LIBCURL_VERSION_NUM >= 0x075200
/* this is libCURLv7.82.0 or later, the curl parameter is ignored */
#else
curl_easy_cleanup(curl);
#endif
curl_free(escaped);
return retval;
}
|
#get(url, headers = {}) ⇒ Patron::Response
Retrieve the contents of the specified url
optionally sending the
specified headers. If the +base_url+ varaible is set then it is prepended
to the +url+ parameter. Any custom headers are merged with the contents
of the +headers+ instance variable. The results are returned in a
Response object.
Notice: this method doesn't accept any data
argument: if you need to send a request body
with a GET request, when using ElasticSearch for example, please, use the #request method.
185 186 187 |
# File 'lib/patron/session.rb', line 185 def get(url, headers = {}) request(:get, url, headers) end |
#get_file(url, filename, headers = {}) ⇒ Patron::Response
Retrieve the contents of the specified +url+ as with #get, but the content at the URL is downloaded directly into the specified file. The file will be accessed by libCURL bypassing the Ruby runtime entirely.
Note that when using this option, the Response object will have ++nil++ as the body, and you will need to read your target file for access to the body string).
199 200 201 |
# File 'lib/patron/session.rb', line 199 def get_file(url, filename, headers = {}) request(:get, url, headers, :file => filename) end |
#handle_cookies(file_path = nil) ⇒ Object
the cookie jar and cookie file path options should be split
Turn on cookie handling for this session, storing them in memory by
default or in +file+ if specified. The file
must be readable and
writable. Calling multiple times will add more files.
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
# File 'lib/patron/session.rb', line 143 def (file_path = nil) if file_path path = Pathname(file_path). if !File.exist?(file_path) && !File.writable?(path.dirname) raise ArgumentError, "Can't create file #{path} (permission error)" elsif File.exist?(file_path) && !File.writable?(file_path) raise ArgumentError, "Can't read or write file #{path} (permission error)" end else path = nil end # Apparently calling this with an empty string sets the cookie file, # but calling it with a path to a writable file sets that file to be # the cookie jar (new cookies are written there) (path.to_s) self end |
#head(url, headers = {}) ⇒ Patron::Response
Same as #get but performs a HEAD request.
209 210 211 |
# File 'lib/patron/session.rb', line 209 def head(url, headers = {}) request(:head, url, headers) end |
#interrupt ⇒ void
This method returns an undefined value.
Interrupt any currently executing request. This will cause the current request to error and raise an exception. The method can be called from another thread to abort the request in-flight.
890 891 892 893 894 |
# File 'ext/patron/session_ext.c', line 890
static VALUE session_interrupt(VALUE self) {
struct patron_curl_state *state = get_patron_curl_state(self);
state->interrupt = INTERRUPT_ABORT;
return self;
}
|
#patch(url, data, headers = {}) ⇒ Patron::Response
inconsistency with "post" - Hash not accepted
Uploads the passed data
to the specified url
using an HTTP PATCH. Note that
unline ++post++, a Hash is not accepted as the ++data++ argument.
249 250 251 |
# File 'lib/patron/session.rb', line 249 def patch(url, data, headers = {}) request(:patch, url, headers, :data => data) end |
#post(url, data, headers = {}) ⇒ Patron::Response
Uploads the passed data
to the specified url
using an HTTP POST.
273 274 275 276 277 278 279 |
# File 'lib/patron/session.rb', line 273 def post(url, data, headers = {}) if data.is_a?(Hash) data = data.map {|k,v| urlencode(k.to_s) + '=' + urlencode(v.to_s) }.join('&') headers['Content-Type'] = 'application/x-www-form-urlencoded' end request(:post, url, headers, :data => data) end |
#post_file(url, filename, headers = {}) ⇒ Patron::Response
Uploads the contents of file
to the specified url
using an HTTP POST.
The file will be sent "as-is" without any multipart encoding.
288 289 290 |
# File 'lib/patron/session.rb', line 288 def post_file(url, filename, headers = {}) request(:post, url, headers, :file => filename) end |
#post_multipart(url, data, filename, headers = {}) ⇒ Patron::Response
Uploads the contents of filename
to the specified url
using an HTTP POST,
in combination with given form fields passed in data
.
300 301 302 |
# File 'lib/patron/session.rb', line 300 def post_multipart(url, data, filename, headers = {}) request(:post, url, headers, {:data => data, :file => filename, :multipart => true}) end |
#put(url, data, headers = {}) ⇒ Patron::Response
inconsistency with "post" - Hash not accepted
Uploads the passed data
to the specified url
using an HTTP PUT. Note that
unline ++post++, a Hash is not accepted as the ++data++ argument.
235 236 237 |
# File 'lib/patron/session.rb', line 235 def put(url, data, headers = {}) request(:put, url, headers, :data => data) end |
#put_file(url, filename, headers = {}) ⇒ Patron::Response
Uploads the contents of file
to the specified url
using an HTTP PUT. The file will be
sent "as-is" without any multipart encoding.
260 261 262 |
# File 'lib/patron/session.rb', line 260 def put_file(url, filename, headers = {}) request(:put, url, headers, :file => filename) end |
#request(action, url, headers, options = {}) ⇒ Patron::Response
Send an HTTP request to the specified url
.
326 327 328 329 |
# File 'lib/patron/session.rb', line 326 def request(action, url, headers, = {}) req = build_request(action, url, headers, ) handle_request(req) end |
#reset ⇒ void
This method returns an undefined value.
Interrupt any currently executing request. This will cause the current request to error and raise an exception. The method can be called from another thread to abort the request in-flight.
890 891 892 893 894 |
# File 'ext/patron/session_ext.c', line 890
static VALUE session_interrupt(VALUE self) {
struct patron_curl_state *state = get_patron_curl_state(self);
state->interrupt = INTERRUPT_ABORT;
return self;
}
|
#response_class ⇒ #new
Returns the class that will be used to build a Response from a Curl call.
Primarily useful if you need a very lightweight Response object that does not have to perform all the parsing of various headers/status codes. The method must return a module that supports the same interface for +new+ as ++Patron::Response++
342 343 344 |
# File 'lib/patron/session.rb', line 342 def response_class ::Patron::Response end |
#unescape(value) ⇒ Object Also known as: urldecode
Unescapes the provided string using libCURL URL escaping functions.
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 |
# File 'ext/patron/session_ext.c', line 315
static VALUE session_unescape(VALUE self, VALUE value) {
VALUE string = StringValue(value);
char* unescaped = NULL;
VALUE retval = Qnil;
#if LIBCURL_VERSION_NUM >= 0x075200
/* this is libCURLv7.82.0 or later, the curl parameter is ignored */
CURL *curl = NULL;
#else
CURL *curl = curl_easy_init();
#endif
unescaped = curl_easy_unescape(curl,
RSTRING_PTR(string),
(int) RSTRING_LEN(string),
NULL);
retval = rb_str_new2(unescaped);
curl_free(unescaped);
#if LIBCURL_VERSION_NUM >= 0x075200
/* this is libCURLv7.82.0 or later, the curl parameter is ignored */
#else
curl_easy_cleanup(curl);
#endif
return retval;
}
|