curl :: CURLInfoChars :: content_type
curl :: CURLInfoChars :: defaultinit
curl :: CURLInfoChars :: effective_url
curl :: CURLInfoChars :: ftp_entry_path
curl :: CURLInfoChars :: local_ip
curl :: CURLInfoChars :: primary_ip
curl :: CURLInfoChars :: private_data
curl :: CURLInfoChars :: redirect_url
curl :: CURLInfoChars :: rtsp_session_id
curl $ CURLInfoChars :: 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 :: CURLInfoChars :: content_type
curl :: CURLInfoChars :: defaultinit
core :: Pointer :: defaultinit
core :: Object :: defaultinit
curl :: CURLInfoChars :: effective_url
curl :: CURLInfoChars :: ftp_entry_path
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 :: CURLInfoChars :: local_ip
core :: Object :: output_class_name
Display class name on stdout (debug only).curl :: CURLInfoChars :: primary_ip
curl :: CURLInfoChars :: private_data
curl :: CURLInfoChars :: redirect_url
curl :: CURLInfoChars :: rtsp_session_id
# Reproduce Enum of available CURL Chars information, used for NativeCurl.easy_getinfo
extern class CURLInfoChars `{ CURLINFO `}
	new content_type `{ return CURLINFO_CONTENT_TYPE; `}
	new effective_url `{ return CURLINFO_EFFECTIVE_URL; `}
	new redirect_url `{ return CURLINFO_REDIRECT_URL; `}
	new primary_ip `{ return CURLINFO_PRIMARY_IP; `}
	new local_ip `{ return CURLINFO_LOCAL_IP; `}
	new ftp_entry_path `{ return CURLINFO_FTP_ENTRY_PATH; `}
	new rtsp_session_id `{ return CURLINFO_RTSP_SESSION_ID; `}
	new private_data `{ return CURLINFO_PRIVATE; `}
end
					lib/curl/native_curl.nit:400,1--410,3