http auth was implemented way back in r48715 (one less item in FIXMEs).

SVN revision: 55557
This commit is contained in:
Rui Seabra 2010-12-14 22:30:53 +00:00
parent f64f4930e9
commit 5315577722
1 changed files with 2 additions and 1 deletions

View File

@ -37,7 +37,7 @@
* ecore_con_url_url_set(url_con, "ftp://ftp.example.com");
* ecore_con_url_ftp_upload(url_con, "/tmp/file", "user", "pass","dir");
*
* FIXME: Support more CURL features: Authentication, Progress callbacks and more...
* FIXME: Support more CURL features: Progress callbacks and more...
*/
#ifdef HAVE_CONFIG_H
@ -738,6 +738,7 @@ ecore_con_url_response_headers_get(Ecore_Con_Url *url_con)
/**
* Sets url_con to use http auth, with given username and password, "safely" or not.
* ATTENTION: requires libcurl >= 7.19.1 to work, otherwise will always return 0.
*
* @param url_con Connection object to perform a request on, previously created
* with ecore_con_url_new() or ecore_con_url_custom_new().