Property definitions

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