Added {CURL_OPT_CONSTANTS}.curlopt_followlocation

git-svn-id: https://svn.origo.ethz.ch/eiffelstudio/trunk/Src/library/cURL@71900 8089f293-4706-0410-a29e-feb5c42a2edf
This commit is contained in:
jfiat
2008-01-14 11:50:55 +00:00
parent 60b99e48d4
commit 3b231019ea

View File

@@ -54,6 +54,16 @@ feature -- Enumerations.
]" ]"
end end
curlopt_followlocation: INTEGER is
-- Declared as CURLOPT_FOLLOWLOCATION
external
"C inline use <curl/curl.h>"
alias
"[
return CURLOPT_FOLLOWLOCATION;
]"
end
curlopt_verbose: INTEGER is curlopt_verbose: INTEGER is
-- Declared as CURLOPT_VERBOSE. -- Declared as CURLOPT_VERBOSE.
external external
@@ -165,7 +175,7 @@ feature -- Enumerations.
end end
curlopt_noprogress: INTEGER is curlopt_noprogress: INTEGER is
-- Decalred as CURLOPT_NOPROGRESS -- Declared as CURLOPT_NOPROGRESS
external external
"C inline use <curl/curl.h>" "C inline use <curl/curl.h>"
alias alias
@@ -175,7 +185,7 @@ feature -- Enumerations.
end end
curlopt_progressdata: INTEGER is curlopt_progressdata: INTEGER is
-- Decalred as CURLOPT_PROGRESSDATA -- Declared as CURLOPT_PROGRESSDATA
external external
"C inline use <curl/curl.h>" "C inline use <curl/curl.h>"
alias alias
@@ -212,6 +222,7 @@ feature -- Enumerations.
Result := a_integer = curlopt_cookie or Result := a_integer = curlopt_cookie or
a_integer = curlopt_cookiefile or a_integer = curlopt_cookiefile or
a_integer = curlopt_debugfunction or a_integer = curlopt_debugfunction or
a_integer = curlopt_followlocation or
a_integer = curlopt_httpheader or a_integer = curlopt_httpheader or
a_integer = curlopt_httppost or a_integer = curlopt_httppost or
a_integer = curlopt_post or a_integer = curlopt_post or