diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-11-11 14:30:43 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-11-11 14:30:43 +0000 |
commit | ad77f760cf8223548cd214b361591dfde5443dea (patch) | |
tree | 6efd99947655e198069938590638e538ca10886d /include | |
parent | a50d2a45d72bc4c9178315e52c48072f0f9e3d72 (diff) |
Added CURLOPT_NETRC_FILE.
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 5884c292e..c3c41b4d2 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -693,6 +693,12 @@ typedef enum { an HTTP or FTP server. */ CINIT(MAXFILESIZE, LONG, 114), + /* Set this option to the file name of your .netrc file you want libcurl + to parse (using the CURLOPT_NETRC option). If not set, libcurl will do + a poor attempt to find the user's home directory and check for a .netrc + file in there. */ + CINIT(NETRC_FILE, OBJECTPOINT, 115), + CURLOPT_LASTENTRY /* the last unused */ } CURLoption; |