CURLOPT_NETRC This parameter controls the preference of libcurl between using user names and passwords from your ~/.netrc file, relative to user names and passwords in the URL supplied with CURLOPT_URL. Note: libcurl uses a user name (and supplied or prompted password) supplied with CURLOPT_USERPWD in preference to any of the options controlled by this parameter. Pass a long, set to one of the values described below. CURL_NETRC_OPTIONAL The use of your ~/.netrc file is optional, and - 4 - Formatted: May 16, 2002 curl_easy_setopt(3) libcurl 7.9.2 curl_easy_setopt(3) libcurl Manual libcurl Manual 10 Dec 2001 information in the URL is to be preferred. The file will be scanned with the host and user name (to find the password only) or with the host only, to find the first user name and password after that machine, which ever information is not specified in the URL. Undefined values of the option will have this effect. CURL_NETRC_IGNORED The library will ignore the file and use only the information in the URL. This is the default. CURL_NETRC_REQUIRED This value tells the library that use of the file is required, to ignore the information in the URL, and to search the file with the host only. Only machine name, user name and password are taken into account (init macros and similar things aren't supported). Note: libcurl does not verify that the file has the correct properties set (as the standard Unix ftp client does). It should only be readable by user.