Commit dbdb7fa5 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

- Added the --libcurl [file] option to curl. Append this option to any

  ordinary curl command line, and you will get a libcurl-using source code
  written to the file that does the equivalent operation of what your command
  line operation does!
parent 83a43bea
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -6,6 +6,12 @@

                                  Changelog

Daniel (25 January 2007)
- Added the --libcurl [file] option to curl. Append this option to any
  ordinary curl command line, and you will get a libcurl-using source code
  written to the file that does the equivalent operation of what your command
  line operation does!

Dan F (24 January 2007)
- Fixed a dangling pointer problem that prevented the http_proxy environment
  variable from being properly used in many cases (and caused test case 63
+2 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@ Curl and libcurl 7.16.1

 Public curl release number:               97
 Releases counted from the very beginning: 124
 Available command line options:           114
 Available command line options:           115
 Available curl_easy_setopt() options:     137
 Number of public functions in libcurl:    54
 Amount of public web site mirrors:        39
@@ -15,6 +15,7 @@ This release includes the following changes:
 o CURLOPT_CLOSEPOLICY is now deprecated
 o --ftp-ssl-ccc and CURLOPT_FTP_SSL_CCC were added
 o HTTP support for non-ASCII platforms
 o --libcurl was added

This release includes the following bugfixes:

+7 −1
Original line number Diff line number Diff line
@@ -599,7 +599,7 @@ line. So, it could look similar to this:

url = "http://curl.haxx.se/docs/"

This option can be used multiple times.
This option can be used multiple times to load multiple config files.

When curl is invoked, it always (unless \fI-q\fP is used) checks for a default
config file and uses it if found. The default config file is checked for in
@@ -614,6 +614,12 @@ resort the '%USERPROFILE%\Application Data'.
2) On windows, if there is no _curlrc file in the home dir, it checks for one
in the same dir the executable curl is placed. On unix-like systems, it will
simply try to load .curlrc from the determined home dir.
.IP "--libcurl <file>"
Append this option to any ordinary curl command line, and you will get a
libcurl-using source code written to the file that does the equivalent
operation of what your command line operation does!

If this option is used several times, the last given file name will be used.
.IP "--limit-rate <speed>"
Specify the maximum transfer rate you want curl to use. This feature is useful
if you have a limited pipe and you'd like your transfer not use your entire
+262 −134

File changed.

Preview size limit exceeded, changes collapsed.