curl :: CURLInfoLong
curl :: CURLInfoLong :: condition_unmet
curl :: CURLInfoLong :: defaultinit
curl :: CURLInfoLong :: filetime
curl :: CURLInfoLong :: header_size
curl :: CURLInfoLong :: http_connectcode
curl :: CURLInfoLong :: httpauth_avail
curl :: CURLInfoLong :: lastsocket
curl :: CURLInfoLong :: local_port
curl :: CURLInfoLong :: num_connects
curl :: CURLInfoLong :: os_errno
curl :: CURLInfoLong :: primary_port
curl :: CURLInfoLong :: proxyauth_avail
curl :: CURLInfoLong :: redirect_count
curl :: CURLInfoLong :: request_size
curl :: CURLInfoLong :: response_code
curl :: CURLInfoLong :: rtsp_client_cseq
curl :: CURLInfoLong :: rtsp_cseq_self
curl :: CURLInfoLong :: rtsp_server_cseq
curl :: CURLInfoLong :: ssl_verifyresult
curl $ CURLInfoLong :: SELF
Type of this instance, automatically specialized in every classcore :: Pointer :: address_is_null
Is the address behind this Object at NULL?core :: Object :: class_factory
Implementation used byget_class
to create the specific class.
curl :: CURLInfoLong :: condition_unmet
core :: Object :: defaultinit
curl :: CURLInfoLong :: defaultinit
core :: Pointer :: defaultinit
curl :: CURLInfoLong :: filetime
curl :: CURLInfoLong :: header_size
curl :: CURLInfoLong :: http_connectcode
curl :: CURLInfoLong :: httpauth_avail
core :: Object :: is_same_instance
Return true ifself
and other
are the same instance (i.e. same identity).
core :: Object :: is_same_serialized
Isself
the same as other
in a serialization context?
core :: Object :: is_same_type
Return true ifself
and other
have the same dynamic type.
curl :: CURLInfoLong :: lastsocket
curl :: CURLInfoLong :: local_port
core :: Object :: native_class_name
The class name of the object in CString format.core :: Pointer :: native_equals
curl :: CURLInfoLong :: num_connects
curl :: CURLInfoLong :: os_errno
core :: Object :: output_class_name
Display class name on stdout (debug only).core :: Pointer :: premultiply_alpha
Multiply RGB values by their alpha valuecurl :: CURLInfoLong :: primary_port
curl :: CURLInfoLong :: proxyauth_avail
curl :: CURLInfoLong :: redirect_count
curl :: CURLInfoLong :: request_size
curl :: CURLInfoLong :: response_code
curl :: CURLInfoLong :: rtsp_client_cseq
curl :: CURLInfoLong :: rtsp_cseq_self
curl :: CURLInfoLong :: rtsp_server_cseq
curl :: CURLInfoLong :: ssl_verifyresult
# Reproduce Enum of available CURL Long information, used for NativeCurl.easy_getinfo
extern class CURLInfoLong `{ CURLINFO `}
new response_code `{ return CURLINFO_RESPONSE_CODE; `}
new header_size `{ return CURLINFO_HEADER_SIZE; `}
new http_connectcode `{ return CURLINFO_HTTP_CONNECTCODE; `}
new filetime `{ return CURLINFO_FILETIME; `}
new redirect_count `{ return CURLINFO_REDIRECT_COUNT; `}
new request_size `{ return CURLINFO_REQUEST_SIZE; `}
new ssl_verifyresult `{ return CURLINFO_SSL_VERIFYRESULT; `}
new httpauth_avail `{ return CURLINFO_HTTPAUTH_AVAIL; `}
new proxyauth_avail `{ return CURLINFO_PROXYAUTH_AVAIL; `}
new os_errno `{ return CURLINFO_OS_ERRNO; `}
new num_connects `{ return CURLINFO_NUM_CONNECTS; `}
new primary_port `{ return CURLINFO_PRIMARY_PORT; `}
new local_port `{ return CURLINFO_LOCAL_PORT; `}
new lastsocket `{ return CURLINFO_LASTSOCKET; `}
new condition_unmet `{ return CURLINFO_CONDITION_UNMET; `}
new rtsp_client_cseq `{ return CURLINFO_RTSP_CLIENT_CSEQ; `}
new rtsp_server_cseq `{ return CURLINFO_RTSP_SERVER_CSEQ; `}
new rtsp_cseq_self `{ return CURLINFO_RTSP_CSEQ_RECV; `}
end
lib/curl/native_curl.nit:361,1--381,3