Property definitions

curl $ CURLInfoChars :: defaultinit
# 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