module Ethon::Curl
def double_ptr
-
(::FFI::Pointer)- The double pointer.
Other tags:
- Example: Return a double pointer. -
def double_ptr @double_ptr ||= ::FFI::MemoryPointer.new(:double) end
def get_info_double(option, handle)
-
(Float)- The info.
Parameters:
-
handle(::FFI::Pointer) -- The easy handle. -
option(Symbol) -- The option name.
Other tags:
- Example: Return info. -
def get_info_double(option, handle) if easy_getinfo(handle, option, double_ptr) == :ok double_ptr.read_double else nil end end
def get_info_long(option, handle)
-
(Integer)- The info.
Parameters:
-
handle(::FFI::Pointer) -- The easy handle. -
option(Symbol) -- The option name.
Other tags:
- Example: Return info. -
def get_info_long(option, handle) if easy_getinfo(handle, option, long_ptr) == :ok long_ptr.read_long else nil end end
def get_info_string(option, handle)
-
(String)- The info.
Parameters:
-
handle(::FFI::Pointer) -- The easy handle. -
option(Symbol) -- The option name.
Other tags:
- Example: Return info. -
def get_info_string(option, handle) if easy_getinfo(handle, option, string_ptr) == :ok string_ptr.read_pointer.read_string else nil end end
def init
functions of other libraries that are similarly thread unsafe, it could conflict with
mean no other thread that is using libcurl. Because curl_global_init() calls
the program (i.e. a thread sharing the same memory) is running. This doesn't just
This function is not thread safe. You must not call it when any other thread in
you are familiar with it and mean to control internal operations of libcurl.
operation, you must specify CURL_GLOBAL_ALL. Don't use any other value unless
as described below. Set the desired bits by ORing the values together. In normal
The flags option is a bit pattern that tells libcurl exactly what features to init,
every program, so multiple calls have the same effect as one call.
The environment it sets up is constant for the life of the program and is the same for
code that shares a memory space) before the program calls any other function in libcurl.
This function must be called at least once within a program (a program is all the
Think of it as an extension of the library loader.
This function sets up the program environment that libcurl needs.
def init @@init_mutex.synchronize { if not @@initialized raise RuntimeError.new('curl failed to initialise') if Curl.global_init(GLOBAL_ALL) != 0 @@initialized = true end } end
def long_ptr
-
(::FFI::Pointer)- The long pointer.
Other tags:
- Example: Return a long pointer. -
def long_ptr @long_ptr ||= ::FFI::MemoryPointer.new(:long) end
def set_option(option, value, handle)
def set_option(option, value, handle) case value when String easy_setopt_string(handle, option, value.to_s) when Integer easy_setopt_long(handle, option, value) when Proc, FFI::Function easy_setopt_callback(handle, option, value) else easy_setopt(handle, option, value) if value end end
def string_ptr
-
(::FFI::Pointer)- The string pointer.
Other tags:
- Example: Return a string pointer. -
def string_ptr @string_ptr ||= ::FFI::MemoryPointer.new(:pointer) end