Daniel Stenberg
d2cfb7fd13
Works for me
2007-02-23 10:08:46 +00:00
Daniel Stenberg
e37973913d
- Added warning outputs if the command line uses more than one of the options
...
-v, --trace and --trace-ascii, since it could really confuse the user.
Clarified this fact in the man page.
2007-02-23 09:48:01 +00:00
Daniel Stenberg
8b5295d003
setting CURLOPT_PROXY to "" explicitly disables the use of a proxy (even if
...
there is an environment variable set)
2007-02-22 21:21:05 +00:00
Linus Nielsen Feltzing
83e078256c
New FTP CCC functionality - adds passive and active mode to accomodate for different server behaviour
2007-02-20 22:08:50 +00:00
Linus Nielsen Feltzing
2f5e99ca02
New FTP CCC functionality - adds passive and active mode to accomodate for different server behaviour
2007-02-20 22:02:11 +00:00
Daniel Stenberg
1297c54b26
Ian Turner fixed the libcurl.m4 macro's support for --with-libcurl.
...
AC_PATH_PROG was not used properly.
2007-02-19 12:37:04 +00:00
Daniel Stenberg
17e8d60c01
- Robson Braga Araujo made passive FTP transfers work with SOCKS (both 4 and
...
5).
2007-02-19 11:53:54 +00:00
Daniel Stenberg
cbf58d88d0
- Jeff Pohlmeyer identified two problems: first a rather obscure problem with
...
the multi interface and connection re-use that could make a
curl_multi_remove_handle() ruin a pointer in another handle.
The second problem was less of an actual problem but more of minor quirk:
the re-using of connections wasn't properly checking if the connection was
marked for closure.
2007-02-18 23:02:42 +00:00
Dan Fandrich
b05f408348
Added --ftp-ssl-ccc issue.
2007-02-14 20:02:08 +00:00
Daniel Stenberg
7f70dbcad5
Rob Crittenden added support for NSS (Network Security Service) for the
...
SSL/TLS layer. http://www.mozilla.org/projects/security/pki/nss/
2007-02-12 22:32:37 +00:00
Daniel Stenberg
28b932fb4e
- Shmulik Regev fixed so that the final CRLF of HTTP response headers are sent
...
to the debug callback.
- Shmulik Regev added CURLOPT_HTTP_CONTENT_DECODING and
CURLOPT_HTTP_TRANSFER_DECODING that if set to zero will disable libcurl's
internal decoding of content or transfer encoded content. This may be
preferable in cases where you use libcurl for proxy purposes or similar. The
command line tool got a --raw option to disable both at once.
2007-02-12 21:13:47 +00:00
Daniel Stenberg
02c17651bf
updated with recent info and cut out some of the more speculating parts and
...
instead focus on explaining on how the libs differ from each other
2007-02-11 10:10:08 +00:00
Daniel Stenberg
890b34d22e
updated
2007-02-11 09:55:17 +00:00
Daniel Stenberg
e89fb10736
darned tab completion on a late evening... :-P
2007-02-10 23:24:18 +00:00
Daniel Stenberg
48e8b52fbb
minor updates to reflect reality better
2007-02-10 23:23:42 +00:00
Daniel Stenberg
61f19c6ca3
file:// transfers are blocking
2007-02-10 12:07:46 +00:00
Daniel Stenberg
91386937ff
- Michael Wallner provided a patch that adds support for CURLOPT_TIMEOUT_MS
...
and CURLOPT_CONNECTTIMEOUT_MS that, as their names should hint, do the
timeouts with millisecond resolution instead. The only restriction to that
is the alarm() (sometimes) used to abort name resolves as that uses full
seconds. I fixed the FTP response timeout part of the patch.
Internally we now count and keep the timeouts in milliseconds but it also
means we multiply set timeouts with 1000. The effect of this is that no
timeout can be set to more than 2^31 milliseconds (on 32 bit systems), which
equals 24.86 days. We probably couldn't before either since the code did
*1000 on the timeout values on several places already.
2007-02-05 22:51:32 +00:00
Daniel Stenberg
8f87c15bda
some additional info
2007-02-03 21:35:11 +00:00
Daniel Stenberg
823d296e12
recent contributors
2007-01-28 09:59:11 +00:00
Daniel Stenberg
fbc4407583
- David McCreedy fixed the Curl command line tool for HTTP on non-ASCII
...
platforms.
2007-01-27 23:02:17 +00:00
Gunter Knauf
f21a2b3270
updated mingw build instructions for libssh2.
2007-01-26 13:55:18 +00:00
Daniel Stenberg
dbdb7fa55a
- 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!
2007-01-25 15:58:00 +00:00
Daniel Stenberg
0b4bdcf18f
clarify the INFILESIZE option(s)
2007-01-17 08:57:20 +00:00
Daniel Stenberg
75899741b9
corrected example
2007-01-09 18:58:16 +00:00
Daniel Stenberg
f5e4a78b59
no suprise really, but it works fine on SH4 as well...
2007-01-08 09:32:02 +00:00
Daniel Stenberg
4750e6f3c5
- Linus Nielsen Feltzing introduced the --ftp-ssl-ccc command line option to
...
curl that uses the new CURLOPT_FTP_SSL_CCC option in libcurl. If enabled, it
will make libcurl shutdown SSL/TLS after the authentication is done on a
FTP-SSL operation.
2007-01-05 23:11:14 +00:00
Daniel Stenberg
0682d25da5
- Victor Snezhko helped us fix bug report #1603712
...
(http://curl.haxx.se/bug/view.cgi?id=1603712 ) (known bug #36 ) --limit-rate
(CURLOPT_MAX_SEND_SPEED_LARGE and CURLOPT_MAX_RECV_SPEED_LARGE) are broken
on Windows (since 7.16.0, but that's when they were introduced as previous
to that the limiting logic was made in the application only and not in the
library). It was actually also broken on select()-based systems (as apposed
to poll()) but we haven't had any such reports. We now use select(), Sleep()
or delay() properly to sleep a while without waiting for anything input or
output when the rate limiting is activated with the easy interface.
2007-01-02 22:34:56 +00:00
Daniel Stenberg
8500397cf1
curl_easy_cleanup kills this memory too
2006-12-31 13:53:19 +00:00
Daniel Stenberg
439b84c782
CURLOPT_CAPATH is OpenSSL-only
2006-12-21 09:36:03 +00:00
Daniel Stenberg
0e899d7728
* removed the SSH-based protocols as they are now being implemented
...
* added mentioning of doing the stunnel equivalent ourselves for the test suite
* spell-check
2006-12-19 14:28:01 +00:00
Daniel Stenberg
1a85fb2bd0
37. Having more than one connection to the same host when doing NTLM
...
authentication (with performs multiple "passes" and authenticates a
connection rather than a HTTP request), and particularly when using the
multi interface, there's a risk that libcurl will re-use a wrong connection
when doing the different passes in the NTLM negotiation and thus fail to
negotiate (in seemingly mysterious ways).
36. --limit-rate (CURLOPT_MAX_SEND_SPEED_LARGE and
CURLOPT_MAX_RECV_SPEED_LARGE) are broken on Windows (since 7.16.0, but
that's when they were introduced as previous to that the limiting logic was
made in the application only and not in the library). This problem is easily
repeated and it takes a Windows person to fire up his/hers debugger in order
to fix. http://curl.haxx.se/bug/view.cgi?id=1603712
2006-12-19 09:09:44 +00:00
Daniel Stenberg
6fe932b255
minor syntax mistake
2006-12-14 18:20:46 +00:00
Daniel Stenberg
4dcd606b47
7.16.1 knows SFTP too
2006-12-06 10:07:12 +00:00
Daniel Stenberg
393ddd6e1f
clarify --limit-rate somewhat: it might send away/receive chunks of date in
...
temporarily higher speeds than requested, but the given limiting is considered
"over time" and is an average
2006-12-06 09:52:04 +00:00
Daniel Stenberg
ae76ebe2d1
Sh Diao reported that CURLOPT_CLOSEPOLICY doesn't work, and indeed, there is
...
no code present in the library that receives the option. Since it was not
possible to use, we know that no current users exist and thus we simply
removed it from the docs and made the code always use the default path of
the code.
2006-12-05 16:04:01 +00:00
Daniel Stenberg
2336d010ef
fixed in CVS
2006-12-05 13:20:28 +00:00
Daniel Stenberg
c6ff612f6e
Frank Teo provided an updated, mostly docs changed
2006-11-19 21:55:34 +00:00
Daniel Stenberg
5dcb055077
new ruby binding, new tclcurl release
2006-11-18 14:46:33 +00:00
Daniel Stenberg
a03c76b228
ok stop using old and deprecated options
2006-11-08 08:49:27 +00:00
Daniel Stenberg
961ec228d4
SCP support added
2006-11-03 13:45:52 +00:00
Daniel Stenberg
a777eb3d81
Olaf Stueben provided a patch that I edited slightly. It fixes the notorious
...
KNOWN_BUGS #25 , which happens when a proxy closes the connection when
libcurl has sent CONNECT, as part of an authentication negotiation. Starting
now, libcurl will re-connect accordingly and continue the authentication as
it should.
2006-11-03 12:43:55 +00:00
Daniel Stenberg
7f79b52dae
initial SCP support is now added
2006-11-03 12:22:13 +00:00
Daniel Stenberg
675f6a8901
mention the new options
2006-11-02 22:10:18 +00:00
Daniel Stenberg
2147284cad
James Housley brought support for SCP transfers
2006-11-02 21:56:40 +00:00
Daniel Stenberg
0af7aec211
add contributors from the 7.16.0 release
2006-10-30 09:03:34 +00:00
Yang Tse
609044aea2
Compiler warning fix
2006-10-29 21:19:23 +00:00
Daniel Stenberg
6adaac7e18
a Smalltalk binding
2006-10-25 21:07:26 +00:00
Daniel Stenberg
cde5e35d9b
Fixed CURLOPT_FAILONERROR to return CURLE_HTTP_RETURNED_ERROR even for the
...
case when 401 or 407 are returned, *IF* no auth credentials have been given.
The CURLOPT_FAILONERROR option is not possible to make fool-proof for 401
and 407 cases when auth credentials is given, but we've now covered this
somewhat more.
You might get some amounts of headers transferred before this situation is
detected, like for when a "100-continue" is received as a response to a
POST/PUT and a 401 or 407 is received immediately afterwards.
Added test 281 to verify this change.
2006-10-25 20:40:14 +00:00
Daniel Stenberg
4e717cdb30
Armel Asselin separated CA cert verification problems from problems with
...
reading the (local) CA cert file to let users easier pinpoint the actual
problem. CURLE_SSL_CACERT_BADFILE (77) is the new libcurl error code.
2006-10-21 11:32:05 +00:00
Daniel Stenberg
7575e6afc4
made the arrow for 'Send SSL data' point in the right direction!
2006-10-20 21:26:10 +00:00
Daniel Stenberg
694f31ca37
the "work in progress" for #25 was ditched a long time ago
2006-10-18 07:53:24 +00:00
Daniel Stenberg
f53347631e
Added comments about checking return code and the maxfd counter
2006-10-13 14:01:19 +00:00
Daniel Stenberg
4c04c09138
ghiper now uses the timer callback in the multi interface
2006-10-12 21:26:50 +00:00
Daniel Stenberg
95c3fa836b
clarify more
2006-10-12 14:35:20 +00:00
Daniel Stenberg
ab60a12465
Starting now, adding an easy handle to a multi stack that was already added
...
to a multi stack will cause CURLM_BAD_EASY_HANDLE to get returned.
2006-10-12 14:30:47 +00:00
Daniel Stenberg
2d38e51867
deleted #19 since it concerted FTP third party transfers and they are no longer
...
supported
2006-10-12 09:02:46 +00:00
Daniel Stenberg
a5dda669e3
we've cut out third party transfers
2006-10-12 08:55:01 +00:00
Daniel Stenberg
3c4f3a680a
point out the sslcert web page for -k/--insecure
2006-10-12 08:52:20 +00:00
Daniel Stenberg
b61c06384a
Jeff Pohlmeyer has been working with the hiperfifo.c example source code,
...
and while doing so it became apparent that the current timeout system for
the socket API really was a bit awkward since it become quite some work to
be sure we have the correct timeout set.
Jeff then provided the new CURLMOPT_TIMERFUNCTION that is yet another
callback the app can set to get to know when the general timeout time
changes and thus for an application like hiperfifo.c it makes everything a
lot easier and nicer. There's a CURLMOPT_TIMERDATA option too of course in
good old libcurl tradition.
2006-10-12 08:36:47 +00:00
Daniel Stenberg
083a84e5d0
repair id string
2006-10-10 19:48:24 +00:00
Daniel Stenberg
d5eb386d00
Added ghiper.c, Jeff Pohlmeyer's example code using the curl_multi_socket()
...
API with glib2
2006-10-10 19:46:57 +00:00
Daniel Stenberg
a40dcca794
changed the wording about removal of internal headers with -H
2006-10-09 14:54:11 +00:00
Daniel Stenberg
56fcf85ab6
slightly improved
2006-10-08 22:19:25 +00:00
Daniel Stenberg
77db81d661
clarified more
2006-10-08 21:41:22 +00:00
Daniel Stenberg
5e0d9aea32
Support for FTP third party transfers is now dropped
2006-09-30 20:31:11 +00:00
Daniel Stenberg
b9f8a4a477
added more explanations
2006-09-27 21:15:36 +00:00
Daniel Stenberg
d569693f24
Armel Asselin's fix for the RESUME_FROM docu
2006-09-26 10:38:24 +00:00
Daniel Stenberg
fe8aee6b08
eeep, tab completion error
2006-09-24 10:33:25 +00:00
Daniel Stenberg
0639e2a6e2
--ftp-ssl-control requires SSL/TLS, it does not "try" it
2006-09-24 10:30:40 +00:00
Daniel Stenberg
4c0936e72f
minor edits
2006-09-23 20:46:07 +00:00
Daniel Stenberg
f7d31bb3e3
Mike Protts added --ftp-ssl-control to make curl use FTP-SSL, but only
...
encrypt the control connection and use the data connection "plain".
2006-09-23 19:37:23 +00:00
Dan Fandrich
b0d3ba76a0
-z works on FTP, too
2006-09-21 22:15:05 +00:00
Daniel Stenberg
c2404f77e9
Extended the explanation for CURLM_CALL_MULTI_PERFORM somewhat.
2006-09-21 11:09:54 +00:00
Daniel Stenberg
ca5de26f50
lots of "HTTPS" features are really "SSL" ones as they are also valid for
...
FTPS
2006-09-20 13:09:27 +00:00
Daniel Stenberg
5de75eee56
PEM is default type for key and cert
2006-09-20 11:35:13 +00:00
Gisle Vanem
9e54d4c7d2
Use CSOURCES as other makefiles. Add line for dependency generation.
2006-09-13 13:51:03 +00:00
Daniel Stenberg
6df85adf3e
hiperfifo.c by Jeff Pohlmeyer
2006-09-12 11:25:00 +00:00
Daniel Stenberg
3ee6036551
pipelining support is added now
2006-09-12 09:39:16 +00:00
Daniel Stenberg
fb65080548
example code by Michael Wallner
2006-09-12 07:54:55 +00:00
Daniel Stenberg
3a5f21b0d1
corrected URL
2006-09-12 06:28:34 +00:00
Daniel Stenberg
13a5598dc3
so it seems SOCKS5 too (still) has problems with connect timeouts
2006-09-12 06:14:10 +00:00
Daniel Stenberg
29dc39fce1
- Fixed my breakage from earlier today so that doing curl_easy_cleanup() on a
...
handle that is part of a multi handle first removes the handle from the
stack.
- Added CURLOPT_SSL_SESSIONID_CACHE and --no-sessionid to disable SSL
session-ID re-use on demand since there obviously are broken servers out
there that misbehave with session-IDs used.
2006-09-11 17:18:18 +00:00
Daniel Stenberg
9cc3795f1a
Mention that CURLOPT_MAX_RECV/SEND* were added in 7.15.5
2006-09-08 12:46:41 +00:00
Daniel Stenberg
b7eeb6e67f
Major overhaul introducing http pipelining support and shared connection
...
cache within the multi handle.
2006-09-07 21:49:20 +00:00
Daniel Stenberg
52560142bf
added some fresh new blurb
2006-09-05 21:17:04 +00:00
Daniel Stenberg
466d093a92
- "Dortik" ( http://curl.haxx.se/bug/view.cgi?id=1551412 ) provided a patch that
...
while not fixing things very nicely, it does make the SOCKS5 proxy
connection slightly better as it now acknowledges the timeout for connection
and it no longer segfaults in the case when SOCKS requires authentication
and you did not specify username:password.
2006-09-03 22:52:42 +00:00
Daniel Stenberg
1e9be353c2
Mohun Biswas' improvements and clarifications about the options and how to use
...
them.
2006-09-03 22:12:57 +00:00
Daniel Stenberg
5acadc9cd7
David McCreedy added CURLOPT_SOCKOPTFUNCTION and CURLOPT_SOCKOPTDATA to
...
allow applications to set their own socket options.
2006-08-29 14:39:33 +00:00
Daniel Stenberg
da48a6ba87
clarify the string syntax support in the CURLOPT_PROXY section
2006-08-23 21:49:44 +00:00
Dan Fandrich
839441e236
Minor portability fixes to get things running on UNICOS 9.0 on a Cray Y-MP
2006-08-16 18:48:27 +00:00
Daniel Stenberg
b04cbebf86
option name spell fix
2006-08-09 20:54:17 +00:00
Dan Fandrich
0b633027cb
Added eCos and Minix sections.
2006-08-09 16:10:20 +00:00
Gunter Knauf
a11473f85d
fixed some web links.
2006-08-08 23:37:11 +00:00
Daniel Stenberg
1eedad27a2
Armel Asselin made the CURLOPT_PREQUOTE option work fine even when
...
CURLOPT_NOBODY is set true. PREQUOTE is then run roughly at the same place
in the command sequence as it would have run if there would've been a
transfer.
2006-08-08 22:56:46 +00:00
Daniel Stenberg
31657c85e5
added contributors to 7.15.5
2006-08-07 06:46:05 +00:00
Daniel Stenberg
fbcdc192d5
a CURLOPT_PROGRESSFUNCTION clarification
2006-08-02 09:33:32 +00:00
Daniel Stenberg
825a526789
updated docs with the new parameter
2006-08-01 08:57:32 +00:00
Daniel Stenberg
d654736834
new D binding
2006-07-28 22:04:44 +00:00
Daniel Stenberg
4d4151f6c1
David McCreedy added --ftp-ssl-reqd which makes curl *require* SSL for both
...
control and data connection, as the existing --ftp-ssl option only requests
it.
2006-07-26 23:20:47 +00:00
Daniel Stenberg
6f6b93da02
[Hiper-related work] Added a function called curl_multi_assign() that will
...
set a private pointer added to the internal libcurl hash table for the
particular socket passed in to this function.
2006-07-26 22:19:42 +00:00
Daniel Stenberg
2527b53019
Dan Nelson added the CURLOPT_FTP_ALTERNATIVE_TO_USER libcurl option and curl
...
tool option named --ftp-alternative-to-user. It provides a mean to send a
particular command if the normal USER/PASS approach fails.
2006-07-25 22:45:21 +00:00
Daniel Stenberg
abd983e851
just some more blurb
2006-07-08 21:29:45 +00:00
Daniel Stenberg
ee8112b42f
mention the shared DNS stuff
2006-07-07 23:08:03 +00:00
Daniel Stenberg
a09a8164db
mention the by-default "sharing"
2006-07-07 22:07:10 +00:00
Daniel Stenberg
e5cf6a20a7
yassl can be used now
2006-07-07 20:48:51 +00:00
Yang Tse
bc2f0c7dcb
Prevent definition of HAVE_WINxxx_H symbols and avoid inclusion of Windows headers when compiled with Cygwin in POSIX emulation mode.
2006-07-05 23:10:37 +00:00
Daniel Stenberg
279dd6d878
typecast the number passed to CURLOPT_INFILESIZE_LARGE as a curl_off_t
2006-06-30 10:26:26 +00:00
Daniel Stenberg
01f5f0be5a
changed wording slightly, and added standard boiler-plate header
2006-06-26 06:43:45 +00:00
Daniel Stenberg
eb6d404753
Wallner's update
2006-06-24 23:11:36 +00:00
Daniel Stenberg
00a41ab296
corrected introduction version number
2006-06-24 21:49:40 +00:00
Daniel Stenberg
37f4877e56
Michael Wallner added curl_formget(), which allows an application to extract
...
(serialise) a previously built formpost (as with curl_formadd()).
2006-06-24 21:46:41 +00:00
Daniel Stenberg
25411e01db
Provide a libcurl API for setting mutex callbacks in the underlying SSL
...
library, so that the same application code can use mutex-locking
independently of OpenSSL or GnutTLS being used.
2006-06-24 15:21:49 +00:00
Daniel Stenberg
dfe1884c25
Peter Silva introduced CURLOPT_MAX_SEND_SPEED_LARGE and
...
CURLOPT_MAX_RECV_SPEED_LARGE that limit tha maximum rate libcurl is allowed
to send or receive data. This kind of adds the the command line tool's
option --limit-rate to the library.
The rate limiting logic in the curl app is now removed and is instead
provided by libcurl itself. Transfer rate limiting will now also work for -d
and -F, which it didn't before.
2006-06-22 21:36:53 +00:00
Daniel Stenberg
3e5dcc8bcd
minor language edits bug reports 1510080 1510098
2006-06-21 17:34:29 +00:00
Daniel Stenberg
ff81900784
the D binding link is dead but we know of no new one!
2006-06-20 07:27:10 +00:00
Daniel Stenberg
4cb30a3057
bad syntax
2006-06-20 07:03:29 +00:00
Daniel Stenberg
55d22ba10c
when mentioning the default config file, point back to the actual description
...
of how to write such a file
2006-06-16 07:27:06 +00:00
Dan Fandrich
59582a9d9d
Implemented --enable-hidden-symbols configure option to enable
...
-fvisibility=hidden on gcc >= 4.0. This reduces the size of the libcurl
binary and speeds up dynamic linking by hiding all the internal symbols from
the symbol table.
2006-06-12 20:33:04 +00:00
Daniel Stenberg
6246bbc656
oops
2006-06-12 09:32:39 +00:00
Daniel Stenberg
1b028b419b
added contributors from the 7.15.4 release
2006-06-12 09:30:14 +00:00
Daniel Stenberg
6a151c1312
corrected the CURLINFO_TOTAL_TIME description
2006-06-08 11:06:26 +00:00
Daniel Stenberg
bcccd2fe74
Removed a few fixed issues and a few issues currently in progress in the Hiper
...
project. Also added a few obvious ones.
2006-05-30 08:45:59 +00:00
Daniel Stenberg
404e23734b
correct explicit/implicit terms for FTPS
2006-05-28 11:28:40 +00:00
Daniel Stenberg
fb88723afc
minor RFC updates, Dan Fandrich brought my attention to them
2006-05-25 11:15:25 +00:00
Daniel Stenberg
606562aa7e
Michael Wallner provided a patch that allows "SESS" to be set with
...
CURLOPT_COOKIELIST, which then makes all session cookies get cleared. (slightly
edited by me, and the re-indent in cookie.c was also done by me)
2006-05-24 22:46:38 +00:00
Daniel Stenberg
dadf3f06ee
updated with more recent facts
2006-05-15 08:09:07 +00:00
Daniel Stenberg
8ed0d5675f
The SOCKS connection codes don't properly acknowledge (connect) timeouts.
2006-05-14 22:49:23 +00:00
Daniel Stenberg
d5e9041344
The new ftpuploadresume.c example by Philip Bock
2006-05-11 22:24:44 +00:00
Daniel Stenberg
77475f2ad0
Andreas Ntaflos reported a bug in libcurl.m4: When configuring my GNU
...
autotools project, which optionally (default=yes) uses libcurl on a system
without a (usable) libcurl installation, but not specifying
`--without-libcurl', configure determines correctly that no libcurl is
available, however, the LIBCURL variable gets expanded to `LIBCURL = -lcurl'
in the resulting Makefiles.
David Shaw fixed the flaw.
2006-05-09 12:56:35 +00:00
Daniel Stenberg
6307e783d8
Fixed known bug #28 . The TFTP code no longer assumes a packed struct and
...
thus works reliably on more platforms.
2006-05-08 15:09:50 +00:00
Daniel Stenberg
6ca627ae74
curl-config got a --checkfor option
2006-05-02 22:48:22 +00:00
Daniel Stenberg
80a0b81c2a
Make this code use the proper pointers
2006-05-02 09:19:31 +00:00
Daniel Stenberg
6ef7a81a3b
updated with more error codes
2006-04-26 13:00:45 +00:00
Daniel Stenberg
95152aec68
David McCreedy brought line end conversions when doing FTP ASCII
...
transfers. They are done on non-windows systems and translate CRLF to LF.
2006-04-26 07:40:37 +00:00
Daniel Stenberg
6e520c4cdc
added SPL and XBLite
2006-04-21 11:17:54 +00:00
Daniel Stenberg
fede784fa2
the new conversion stuff documented (mostly by David McCreedy)
2006-04-19 09:08:15 +00:00
Daniel Stenberg
b0e4debaab
adding the new man pages to the package
2006-04-10 21:55:48 +00:00
Daniel Stenberg
38c994b83b
33. Doing multi-pass HTTP authentication on a non-default port does not work.
...
This happens because the multi-pass code abuses the redirect following code
for doing multiple requests, and when we following redirects to an absolute
URL we must use the newly specified port and not the one specified in the
original URL. A proper fix to this would need to separate the negotiation
"redirect" from an actual redirect.
2006-04-10 08:24:57 +00:00
Daniel Stenberg
a21a77d230
CURLE_FTP_USER_PASSWORD_INCORRECT is not returned by libcurl anymore!
2006-04-09 22:41:22 +00:00
Daniel Stenberg
260b88c197
mention RFC 2396 for URL syntax spec
2006-04-09 22:40:49 +00:00
Daniel Stenberg
655331a91b
new little example using the new conversion callbacks added in 7.15.4
2006-04-09 08:39:08 +00:00
Daniel Stenberg
09e569f83d
mention the outlength argument
2006-04-08 21:29:01 +00:00
Daniel Stenberg
5a4b43848a
First commit of David McCreedy's EBCDIC and TPF changes.
2006-04-07 21:50:47 +00:00
Daniel Stenberg
598ffeea89
David McCreedy added CURLINFO_FTP_ENTRY_PATH to export the FTP entry path
2006-03-21 22:30:03 +00:00
Daniel Stenberg
97181b5c0d
7.15.3 contributors
2006-03-20 22:24:02 +00:00
Daniel Stenberg
38295e8a75
slight rewording based on debian bug report #357388 by Justin Pryzby
2006-03-17 08:22:50 +00:00
Daniel Stenberg
f9612b5eaf
fixed in CVS
2006-03-16 22:31:04 +00:00
Daniel Stenberg
938b5c886e
slightly edited explanation for -f/--fail by the help of Kjell Ericson
2006-03-15 21:21:35 +00:00
Daniel Stenberg
bac52f3969
--ftp-method and CURLOPT_FTP_FILEMETHOD are now documented and usable
2006-03-14 00:05:15 +00:00
Daniel Stenberg
3f22901a43
Scott Worley's typo fixes
2006-03-13 19:44:36 +00:00
Daniel Stenberg
aa50a00898
point out that CAINFO points out a file name by default
2006-03-02 22:09:30 +00:00
Daniel Stenberg
26f112ba55
added large chunk of blurb about the progress meter
2006-03-02 22:04:39 +00:00
Daniel Stenberg
159b9162f8
I'm pretty sure #24 is fixed in 7.15.2
2006-03-02 13:35:54 +00:00
Daniel Stenberg
241af465fd
ack, removed duplicate
2006-02-27 18:17:50 +00:00
Daniel Stenberg
59510a554d
7.15.2 contributors added
2006-02-27 18:16:47 +00:00
Dan Fandrich
d29147565c
Fixed test case 57 (KNOWN_BUG #18 )
2006-02-22 23:55:28 +00:00
Daniel Stenberg
a15d107dde
Peter Su added support for SOCKS4 proxies. Enable this by setting the proxy
...
type to the already provided type CURLPROXY_SOCKS4.
I added a --socks4 option that works like the current --socks5 option but
instead use the socks4 protocol.
2006-02-21 07:46:41 +00:00
Daniel Stenberg
09897b8146
ftp upload with url ending with slash
2006-02-20 10:05:47 +00:00
Daniel Stenberg
98180b5cc7
fixed formatting
2006-02-17 13:31:49 +00:00
Dan Fandrich
831bdb9f63
Gopher is no longer supported.
2006-02-16 19:19:32 +00:00
Daniel Stenberg
7a37fa4aef
32. (At least on Windows) If libcurl is built with c-ares and there's no DNS
...
server configured in the system, the ares_init() call fails and thus
curl_easy_init() fails as well. This causes weird effects for people who use
numerical IP addresses only.
2006-02-15 09:36:39 +00:00
Daniel Stenberg
dcee24191f
mention the CURLOPT_CONNECT_ONLY connection
2006-02-11 22:36:29 +00:00
Daniel Stenberg
87bcb6f377
Karl M added the CURLOPT_CONNECT_ONLY and CURLINFO_LASTSOCKET options that
...
an app can use to let libcurl only connect to a remote host and then extract
the socket from libcurl. libcurl will then not attempt to do any transfer at
all after the connect is done.
2006-02-11 22:35:16 +00:00
Daniel Stenberg
3b19c7d0d9
CURLOPT_NOSIGNAL might be a MUST to make threaded use work, like on AIX 5.2
...
due to the use of the static variable for sigsetjmp()
2006-02-09 22:25:41 +00:00
Daniel Stenberg
7725729d90
Rene Bernhardt found this typo
2006-02-07 14:03:17 +00:00
Daniel Stenberg
da2c124675
Frank's synctime.c example and an updated list in README
2006-02-04 18:08:54 +00:00
Daniel Stenberg
2fbf94b0f3
Added CURLOPT_LOCALPORT and CURLOPT_LOCALPORTRANGE to libcurl. Set with the
...
curl tool with --local-port. Plain and simply set the range of ports to bind
the local end of connections to. Implemented on to popular demand.
Not extensively tested. Please let me know how it works.
2006-01-30 08:24:07 +00:00
Daniel Stenberg
16f3a32bec
we should fix the system includes in the public headers to be based on checks
...
of the system instead of depending on what particular systems we think need
various headers
2006-01-28 13:14:38 +00:00
Daniel Stenberg
2aed209efa
typo pointed out by Mike Griffiths
2006-01-27 21:23:04 +00:00
Daniel Stenberg
b55b780d7b
Cyrill Osterwalder pointed out that sending "" as data in a header is in
...
fact equal to a blank one according to the spec.
2006-01-27 15:01:10 +00:00
Dan Fandrich
803582f8ac
Fixed some statements about handling multiple occurrences of options.
...
Tried to make some of the wording a bit more consistent.
2006-01-20 18:56:27 +00:00
Daniel Stenberg
5deff1a179
clarify what "-P -" does
2006-01-19 20:40:08 +00:00
Daniel Stenberg
e236a1c99b
corrected factual mistake about BSD license in the krb4.c code
2006-01-19 09:53:33 +00:00
Daniel Stenberg
8971f656b4
David Shaw: Here is the latest libcurl.m4 autoconf tests. It is updated with
...
the latest features and protocols that libcurl supports and has a minor fix to
better deal with the obscure case where someone has more than one libcurl
installed at the same time.
2006-01-17 17:39:39 +00:00
Daniel Stenberg
67a83c1b34
David Shaw finally removed all traces of Gopher and we are now officially
...
not supporting it. It hasn't been functioning for years anyway, so this is
just finally stating what already was true. And a cleanup at the same time.
2006-01-16 22:14:37 +00:00
Daniel Stenberg
1e8d094274
improved the description of the -L/--location option
2006-01-16 00:00:28 +00:00
Daniel Stenberg
4c35a40858
Bryan Henderson turned the 'initialized' variable for curl_global_init()
...
into a counter, and thus you can now do multiple curl_global_init() and you
are then supposed to do the same amount of calls to curl_global_cleanup().
Bryan also updated the docs accordingly.
2006-01-15 23:55:53 +00:00
Daniel Stenberg
0e79a8944b
adjusted to the new concept of the callback
2006-01-15 23:15:24 +00:00
Daniel Stenberg
bda1e9aeab
Made the copyright year match the latest modification's year.
2006-01-09 13:17:14 +00:00
Daniel Stenberg
e1e753179a
use the proper dash
2006-01-08 22:55:13 +00:00
Daniel Stenberg
99c0a1a7d0
removed easy handle argument from proto
2006-01-04 14:09:57 +00:00
Daniel Stenberg
5acf997e69
upcoming new error code
2006-01-04 14:09:42 +00:00
Daniel Stenberg
c1a06d858d
CURLOPT_PROGRESSFUNCTION is really not a good idea when using the multi
...
interface
2006-01-03 15:53:29 +00:00
Daniel Stenberg
53b5fdbe9e
fixed the prototype
2006-01-03 15:52:59 +00:00
Daniel Stenberg
089e4848d8
minor edits
2006-01-02 23:32:36 +00:00
Daniel Stenberg
58d2e7c6d1
Initial description of the upcoming curl_multi_timeout() function
2006-01-02 23:00:04 +00:00
Daniel Stenberg
fa18d6fb76
I removed the timeout argument from the socket callback and did some other
...
cleanups of this man page. The lengthy description has now also been removed
from curl/multi.h since it immediately got tedious to maintain the info on
two places when I did major updates...
2006-01-02 22:58:56 +00:00
Daniel Stenberg
598965a606
clarified that curl_global_init() isn't thread-safe and that it might affect
...
curl_easy_init() if you don't call curl_global_init() explicitly in your app
2005-12-23 23:22:23 +00:00
Daniel Stenberg
a718cb05ff
The inital early embryos to describe the curl_multi_socket() API. Committed
...
now to enable them to get added as web pages easier, they are not ready
for anything "real" just yet.
2005-12-22 15:11:11 +00:00
Daniel Stenberg
c7a634641f
#31 curl-config --libs" will include details set in LDFLAGS when configure is
...
run that might be needed only for building libcurl.
2005-12-22 08:33:02 +00:00
Daniel Stenberg
8f25a95b47
minor edit
2005-12-15 07:43:39 +00:00
Daniel Stenberg
9533092511
Rene Bernhardt's corrections
2005-12-14 13:10:14 +00:00
Daniel Stenberg
ab31cfa664
another SOCKS-related problem added
2005-12-12 23:05:12 +00:00
Daniel Stenberg
af1c397969
added #29 and #30
2005-12-12 22:50:24 +00:00
Daniel Stenberg
b4113360f6
use c-ares' IPv6 abilities
...
fix CONNECT to a proxy that disconnects during the auth phase
2005-12-10 22:14:17 +00:00
Daniel Stenberg
2d71e22f08
fix CURLOPT_FAILONERROR error, pointed out by Shailesh N. Humbad
2005-12-10 22:12:44 +00:00
Daniel Stenberg
c88d61b044
fresh contributors in the 7.15.1 release
2005-12-06 23:34:53 +00:00
Dan Fandrich
8c6f654b26
Added a run-time check to warn if TFTP is going to fail due to portability
...
issues in the code.
2005-12-05 20:07:05 +00:00
Daniel Stenberg
3e2a52b034
#27 is fixed
2005-11-30 22:09:24 +00:00
Daniel Stenberg
b41765f441
mention the colon-only thing for -u and SSPI+NTLM
2005-11-24 07:20:13 +00:00
Daniel Stenberg
4022a60ea7
I extended a patch from David Shaw to make libcurl _always_ provide an error
...
string in the given error buffer to address the flaw mention on 21 sep 2005.
2005-11-17 14:29:54 +00:00
Daniel Stenberg
39e366fc11
TFTP
2005-11-17 14:28:58 +00:00
Daniel Stenberg
bac17ab7d8
extended the description for exit code 9
2005-11-14 00:17:03 +00:00
Daniel Stenberg
89024febde
mention how to set domain when using NTLM
2005-11-11 08:52:29 +00:00
Daniel Stenberg
d68b1a1e8c
just implemented
2005-11-10 22:11:27 +00:00
Daniel Stenberg
bd8baed138
Introducing range stepping to the curl globbing support. Now you can specify
...
step counter by adding :[num] within the brackets when specifying a range.
2005-11-10 22:11:01 +00:00
Daniel Stenberg
0f82af0f49
* Add step parameter to the globbing. Like [0-1000;10] that would walk the
...
range increasing the number with 10 for every step. Requested by Jose:
http://curl.haxx.se/feedback/display.cgi?id=11315662266802
2005-11-09 23:15:04 +00:00
Daniel Stenberg
e00216581e
27. "libcurl built with GNUTLS ignores the SSLCERT option" - Unlike
...
Curl_ossl_connect(), the Curl_gtls_connect() function does not send the user
certificate to the peer. In fact, it ignores the conn->data->set.cert field
completely, it always uses the anonymous credentials. See
http://curl.haxx.se/bug/view.cgi?id=1348930
2005-11-07 13:54:14 +00:00
Daniel Stenberg
23951ec00c
mention the need for a "fake" -u when --negotiate is used
2005-11-07 08:37:08 +00:00
Daniel Stenberg
f5e85bab1c
oops
2005-11-02 09:38:58 +00:00
Daniel Stenberg
9a44fa83dc
Added:
...
1.9 Where do I buy commercial support for curl?
1.10 How many are using curl?
6.7 What are my obligations when using libcurl in my commerical apps?
Edited a few other paragraphs slightly.
2005-11-02 09:34:53 +00:00
Daniel Stenberg
b259c9c535
re-arranged the win32 section and added a pointer to the INSTALL.devcpp
...
document
2005-10-29 22:18:58 +00:00
Daniel Stenberg
80f481a5f7
Tom Kyer's DevCpp-Mingw Install & Compilation guide
2005-10-28 21:34:51 +00:00
Daniel Stenberg
115fe1b577
mention brokenness
2005-10-28 12:59:37 +00:00
Daniel Stenberg
06d6ea651e
elaborated somewhat in the license chapter
2005-10-28 07:22:45 +00:00
Daniel Stenberg
966fa848a0
Nis Jorgensen filed bug report #1338648
...
(http://curl.haxx.se/bug/view.cgi?id=1338648 ) which really is more of a
feature request, but anyway. It pointed out that --max-redirs did not allow
it to be set to 0, which then would return an error code on the first
Location: found. Based on Nis' patch, now libcurl supports CURLOPT_MAXREDIRS
set to 0, or -1 for infinity. Added test case 274 to verify.
2005-10-27 22:05:38 +00:00
Daniel Stenberg
d49edc8e09
updates to reflect current status in Debian land, and added some known
...
differences between OpenSSL and GnuTLS (that is probably a suitable subject
for a separate document...)
2005-10-27 20:51:43 +00:00
Daniel Stenberg
9d152a77fd
Jaz Fresh pointed out that if you used "-r [number]" as was wrongly described
...
in the man page, curl would send an invalid HTTP Range: header. The correct
way would be to use "-r [number]-" or even "-r -[number]". Starting now,
curl will warn if this is discovered, and automatically append a dash to the
range before passing it to libcurl.
2005-10-27 12:05:36 +00:00
Dan Fandrich
4d7f08a99e
Removed mention of TFTP now that it's implemented.
2005-10-18 18:15:01 +00:00
Daniel Stenberg
82a4c2bce3
Slight editing of wording in the CURLOPT_SSL_VERIFYHOST section.
2005-10-13 21:49:28 +00:00
Daniel Stenberg
19bad0844f
added names from the 7.15.0 release
2005-10-13 09:22:31 +00:00
Daniel Stenberg
b433e4a1e7
NTLM requires windows or OpenSSL. If you build with GnuTLS for example you
...
do not get NTLM support enabled.
2005-10-13 06:20:43 +00:00
Daniel Stenberg
ab1f5c3edd
make it compile warning-free and free() the memory before exit
2005-10-10 20:58:18 +00:00
Daniel Stenberg
d3569a3572
remove getinfo-times from the dist archive since the info is now in the
...
curl_easy_getinfo man page
2005-10-06 09:05:08 +00:00
Daniel Stenberg
89df76e449
end the .nf section, mark the option names properly so that they end up
...
as links in the html version
2005-10-06 09:03:36 +00:00
Daniel Stenberg
e5b2f33b4f
Added the info from getinfo-times as it really belongs in this man page.
2005-10-06 08:58:44 +00:00
Daniel Stenberg
6d9fddb95d
Domenico Andreoli's SEE ALSO patch
2005-10-04 10:58:14 +00:00
Daniel Stenberg
5e4cbd2d24
recent action
2005-10-03 08:38:07 +00:00
Daniel Stenberg
bf6588b6a7
Update in the "which license is best" section as it seems Debian people have
...
made up their mind. Spell-checked as well.
2005-09-30 08:34:51 +00:00
Daniel Stenberg
da192f7955
clarify what the default read callback does and how it uses the READDATA
...
option
2005-09-22 10:15:10 +00:00
Daniel Stenberg
6af5ea38ce
clarified ERRORBUFFER - some errors just don't write a string even though
...
they should. And I removed all uses 'Note' (as they are pretty useless) and
did some other language and phrasing cleanups.
2005-09-21 06:59:01 +00:00
Daniel Stenberg
774dab58f6
mention what WRITEFUNCTION and WRITEDATA do by default
2005-09-21 06:12:41 +00:00
Daniel Stenberg
e3bdb98f7a
oops, broken sentence fixed:
...
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=329305
2005-09-21 06:07:41 +00:00
Daniel Stenberg
a1287ec64f
added URLs to bug reports
2005-09-16 07:18:25 +00:00
Daniel Stenberg
5fbfa1bfa8
Added known bugs #26 , started using my new "bounce URL" that jumps to the
...
correct (and overly complicated) sourceforge bug tracker URL given the bug
report ID number.
2005-09-16 07:09:07 +00:00
Daniel Stenberg
0b7f5ad508
CURLOPT_BUFFERSIZE clarification
2005-09-12 20:36:17 +00:00
Daniel Stenberg
836d88a4b8
--max-time should work just as good on win32 these days
2005-09-08 20:21:52 +00:00
Daniel Stenberg
d5268ed511
mention the protocol-guessing when no protocol part is given in the URL
...
added TFTP to the list of supported protocols
2005-09-08 06:16:46 +00:00
Daniel Stenberg
56dea0ac9a
binding updates
2005-09-06 11:53:24 +00:00
Daniel Stenberg
6120041b69
Added the people from the 7.14.1 release announcement.
2005-09-05 14:22:01 +00:00
Daniel Stenberg
8c1213627d
new release, work has been "initiated"
2005-09-05 06:03:06 +00:00
Daniel Stenberg
291e9aeabd
don't start lines with apostrophes!
2005-09-04 21:53:10 +00:00
Daniel Stenberg
e369270f88
7.14.2 actually
2005-09-04 05:23:08 +00:00
Daniel Stenberg
7e845e7cfd
Added FTP_SKIP_PASV_IP and --ftp-skip-pasv-ip
2005-09-04 05:16:06 +00:00
Daniel Stenberg
911d135deb
explain why the ABI depends on the SSL libs
2005-09-02 13:40:07 +00:00
Daniel Stenberg
e0785ade35
softened my opinions, added API benefit - Thanks to Eric Cooper
2005-09-01 15:03:45 +00:00
Daniel Stenberg
0177ed6f03
clarify that the ctxfunc is called on all new connects
2005-09-01 13:41:29 +00:00
Daniel Stenberg
c62635a3b5
added DISTRO-DILEMMA
2005-09-01 08:44:39 +00:00
Daniel Stenberg
0177476fd2
added the URL
2005-09-01 08:43:44 +00:00
Daniel Stenberg
76d7dface7
new
2005-09-01 08:35:59 +00:00
Daniel Stenberg
51a4493add
Added GNU GSS and separate sections for MIT GSS and Heimdal and added info
...
about what each single lib may be used for.
2005-08-29 13:58:25 +00:00
Daniel Stenberg
9853acba66
Moved the GnuTLS related TODO items from lib/TODO.gnutls to the proper
...
docs/TODO
2005-08-29 06:59:44 +00:00
Daniel Stenberg
09cb9c782d
4.14 Redirects work in browser but not with curl!
2005-08-26 13:22:39 +00:00
Daniel Stenberg
575ce905b2
ok, the right term (using RFC2616 lingo) for the -X keyword is method and not
...
request
2005-08-25 12:19:22 +00:00
Daniel Stenberg
54887af471
"Added in 7.14.1" notes and some minor edits
2005-08-25 07:06:50 +00:00
Daniel Stenberg
573350637e
CURLINFO_COOKIELIST is added in 7.14.1
2005-08-25 07:06:15 +00:00
Daniel Stenberg
49a16f7121
Theo Borm's example, as was posted here:
...
http://curl.haxx.se/mail/lib-2005-08/0163.html
2005-08-24 17:07:27 +00:00
Daniel Stenberg
a4773fcbbb
Toby Peterson added CURLOPT_IGNORE_CONTENT_LENGTH to the library, accessible
...
from the command line tool with --ignore-content-length. This will make it
easier to download files from Apache 1.x (and similar) servers that are
still having problems serving files larger than 2 or 4 GB. When this option
is enabled, curl will simply have to wait for the server to close the
connection to signal end of transfer. I wrote test case 269 that runs a
simple test that this works.
2005-08-24 10:57:28 +00:00
Daniel Stenberg
6ba19692a3
fixed #26 , GnuTLS CA cert verification
2005-08-24 07:45:14 +00:00
Daniel Stenberg
a142372750
known bug #26 , pretty fatal for anyone who wants to use proper SSL and GnuTLS
2005-08-23 08:51:38 +00:00
Daniel Stenberg
747a05844d
Using CURLOPT_COOKIEFILE serveral times add more files to read from.
2005-08-19 21:38:44 +00:00
Daniel Stenberg
5e16a77fa9
Added new contributors from RELEASE-NOTES. The somewhat different sort order
...
is due to now using emacs to sort but I'm not in a mood to fix it better just
now.
2005-08-19 07:32:14 +00:00
Daniel Stenberg
d5baaf7756
The big POST to HTTPS is probably not a bug.
...
The CONNECT problem is now bug #25 planned to get fixed in next release.
2005-08-19 06:43:25 +00:00
Gunter Knauf
6a5c2b0fc3
updated NetWare section.
2005-08-18 16:33:45 +00:00
Daniel Stenberg
34cadb1e54
Harshal Pradhan's use-after-free bug with ares is now known bug #24 to be
...
fixed after 7.14.1
2005-08-18 08:18:24 +00:00
Daniel Stenberg
94692b904e
it isn't strictly necessary to use it after a perform
2005-08-18 06:14:17 +00:00
Daniel Stenberg
18f3087afd
removed issue 20 that was about valgrind complaints on other libs/parts, as
...
we have a fancier valgrind error parser these days and it seems to work rather
well
2005-08-17 09:43:29 +00:00
Daniel Stenberg
15bc228ae9
the SOCKS situation
2005-08-17 09:41:54 +00:00
Daniel Stenberg
2f78c96330
clarify
2005-08-12 21:47:05 +00:00
Daniel Stenberg
162f58c53c
-H needs no CRLF or similar added
2005-08-12 20:56:12 +00:00
Daniel Stenberg
0b8f57bf06
mention our security related mail alias in the "who do I mail" section
2005-08-07 14:36:55 +00:00
Daniel Stenberg
9a264bf610
mention that the NOBODY reset thing is added in 7.14.1
2005-08-01 11:56:03 +00:00
Daniel Stenberg
57007e80a9
Moved items from TODO-RELEASE to TODO since they're not really bound to happen
...
in any specific release.
2005-07-30 23:48:07 +00:00
Daniel Stenberg
b6c876bdb6
clarified the PHP/CURL topic a bit more
2005-07-30 23:37:05 +00:00
Daniel Stenberg
84c2184909
CURLOPT_COOKIELIST change since it no longer modifies the input string contents
2005-07-30 08:27:51 +00:00
Daniel Stenberg
9da9d00c62
fixed example since this is how the interface works now
2005-07-28 21:51:20 +00:00
Daniel Stenberg
726b9e2240
If any of the options CURLOPT_HTTPGET, CURLOPT_POST and CURLOPT_HTTPPOST is
...
set to 1, CURLOPT_NOBODY will now automatically be set to 0.
2005-07-27 22:29:50 +00:00
Daniel Stenberg
2236ba0d20
Peteris Krumins added CURLOPT_COOKIELIST and CURLINFO_COOKIELIST, which is a
...
simple interface to extracting and setting cookies in libcurl's internal
"cookie jar". See the new cookie_interface.c example code.
2005-07-27 22:17:14 +00:00
Daniel Stenberg
ee0666c8df
better description for HEADERFUNCTION
2005-07-13 09:46:37 +00:00
Daniel Stenberg
a8a8ae2e92
elaborate a bit on how to deal with chunked-encoded trailers that now are
...
passed to the app using the header callback
2005-07-13 09:37:22 +00:00
Daniel Stenberg
fd1148a728
converted this back to one name per line to make it easier/better to diff
...
and merge when new names are added
2005-07-13 07:44:53 +00:00
Daniel Stenberg
86660c73e5
mention an old idea
2005-07-08 13:28:16 +00:00
Daniel Stenberg
6d8a208df2
mention the exception only once ;-)
2005-07-07 05:43:04 +00:00
Daniel Stenberg
5c5d5270d2
new Lua binding
2005-06-28 09:08:52 +00:00
Daniel Stenberg
36461fb2aa
clarify that ftp ascii transfers don't do right in current libcurl
2005-06-26 10:08:08 +00:00
Daniel Stenberg
d8dcd5e472
added docs about the new proxy string support
2005-06-23 23:07:07 +00:00
Daniel Stenberg
b1b63c1dd1
mention more ARMs
2005-06-22 22:30:52 +00:00
Daniel Stenberg
c73f8e835f
David Shaw's updated version:
...
It now properly handles code that uses curl_free() (since not all versions of
curl have it), and also fixes a few problems when detecting libcurl on MinGW,
and a linker problem on OSX Panther.
2005-06-22 06:58:11 +00:00
Daniel Stenberg
93558c4299
mistake
2005-06-20 22:32:45 +00:00
Daniel Stenberg
1dc0ce9562
4.13 Why is curl -R on Windows one hour off?
2005-06-13 18:33:40 +00:00
Daniel Stenberg
c04fae3096
CURLINFO_FILETIME returns the time for GMT
2005-06-11 22:04:41 +00:00
Daniel Stenberg
c4bbcc83b6
Tupone Alfredo's fixes:
...
1) findtool does look per tool in PATH and think ./perl is the perl
executable, while is just a local directory (I have . in the PATH)
2) I got several warning for head -1 deprecated in favour of head -n 1
3) ares directory is missing some file (missing is missing :-) ) because
automake and friends is not run.
(Let's hope number 2 doesn't break somewhere "out there", if so we can always
search/replace that back.)
2005-06-06 21:19:04 +00:00
Daniel Stenberg
eb162b73c2
first rough version
2005-06-03 21:38:40 +00:00
Daniel Stenberg
910b8b6a69
#15 is now fixed
2005-05-18 10:38:21 +00:00
Daniel Stenberg
c3207e215f
clarified for GnuTLS
2005-05-18 10:14:25 +00:00
Daniel Stenberg
f83be11b85
several updates
2005-05-18 10:12:08 +00:00
Daniel Stenberg
1e51c3a832
bad formatting
2005-05-16 22:30:00 +00:00
Daniel Stenberg
f518a5e231
updated
2005-05-13 23:00:06 +00:00
Daniel Stenberg
fa4cd8868c
remove blank lines
2005-05-12 21:56:26 +00:00
Daniel Stenberg
8c573ca7f3
CURLOPT_SSLVERSION clarified
2005-05-12 21:49:42 +00:00
Daniel Stenberg
60e26199a2
MatrixSSL and yaSSL are two free libs we _could_ support
2005-05-11 11:56:04 +00:00
Daniel Stenberg
364562f209
removed duplicate
2005-05-11 09:56:10 +00:00
Daniel Stenberg
e4c0a85da0
Jeremy Brown's OpenSSL thread-locking example
2005-05-09 21:12:03 +00:00
Daniel Stenberg
763b812dc7
Jamie Lokier added. And I now recounted the amount better: 437 named as of now.
2005-05-09 13:53:42 +00:00
Daniel Stenberg
3269dfb4ab
update the "PORTS" section a little
2005-05-09 13:26:41 +00:00
Daniel Stenberg
e816bd259f
add multi-thread details for GnuTLS
2005-05-09 13:13:38 +00:00
Daniel Stenberg
42a34c7cd7
Jeff is short for Jeffrey
2005-05-09 11:43:23 +00:00
Daniel Stenberg
9a72751958
updated with the current RELEASE-NOTES names
2005-05-09 11:39:20 +00:00
Daniel Stenberg
314e6fa80b
I decided to make this list more complete. I took the 5-year anniversary list
...
from 2003 and added all names from all release notes in the CVS (there is a
slight gap though). I removed names with only first names (Like "Chris" and
"Ralph") , as that won't make anyone happy and we might list their full names
as well anyway.
This list is now intended to include _all_ people that contribute: big or
small. 389 names at the time of this commit.
2005-05-09 09:11:39 +00:00
Daniel Stenberg
b04d6dd0b1
January 2003. Started working on the distributed curl tests. The autobuilds.
2005-05-07 14:23:32 +00:00
Daniel Stenberg
07e58aaa79
Sort of "fixed" KNOWN_BUGS #4 : curl now builds IPv6 enabled on AIX 4.3. At
...
least it should no longer cause a compiler error. However, it does not have
AI_NUMERICHOST so we cannot getaddrinfo() any numerical addresses with it (we
use that for FTP PORT/EPRT)! So, I modified the configure check that checks if
the getaddrinfo() is working, to use AI_NUMERICHOST since then it'll fail on
AIX 4.3 and it will automatically build with IPv6 support disabled.
2005-05-02 14:06:27 +00:00
Daniel Stenberg
b0f856213d
Added --trace-time that when used adds a time stamp to each trace line that
...
--trace, --trace-ascii and --verbose output. I also made the '>' display
separate each line on the linefeed so that HTTP requests etc look nicer in the
-v output.
2005-05-02 09:38:19 +00:00
Daniel Stenberg
d12b44204b
Bryan Henderson's fine update of SSL_VERIFYPEER and SSL_VERIFYHOST
2005-05-02 07:28:40 +00:00
Daniel Stenberg
002de1eae2
Updated with (new and old) default config file search path explanation.
2005-04-28 21:26:30 +00:00
Daniel Stenberg
6e1633a6c5
be specific about what max_fd contains after a call
2005-04-25 08:55:55 +00:00
Daniel Stenberg
6a27449922
digest works in the proxyauth too
2005-04-18 14:32:48 +00:00
Daniel Stenberg
7fba9ed398
somewhat clarified that this only sets the fd_sets and expects them to be
...
cleared before this function is called
2005-04-17 23:01:46 +00:00
Daniel Stenberg
b15507aac3
clarify that > in the verbose output can contain newlines
2005-04-16 12:24:12 +00:00
Dan Fandrich
ec2ad57c32
Mention GnuTLS and fix a few spelling errors.
2005-04-13 19:31:00 +00:00
Daniel Stenberg
c52aa6df33
GnuTLS support
2005-04-13 08:50:13 +00:00
Daniel Stenberg
a19b23b59f
extended the multi-thread explanation
2005-04-13 08:47:59 +00:00
Daniel Stenberg
5ad2a253e8
refresh
2005-04-11 13:50:19 +00:00
Daniel Stenberg
b5d50e9298
5.12 Can I make libcurl fake or hide my real IP address?
2005-04-11 13:39:55 +00:00
Daniel Stenberg
893cbaaf2f
added some blurb about the GnuTLS license
2005-04-07 15:28:56 +00:00
Daniel Stenberg
015a618172
ssl_version_num is not used anymore
2005-04-07 15:21:50 +00:00
Daniel Stenberg
5ebc6e305e
add SSPI
2005-04-07 07:30:02 +00:00
Dan Fandrich
34854e70cf
Removed extraneous comma
2005-04-06 00:39:48 +00:00
Daniel Stenberg
6e8e0418fc
5.11 How do I make libcurl not receive the whole HTTP response?
2005-04-05 14:38:38 +00:00
Daniel Stenberg
e9eb52305f
two more actual FAQs
2005-04-05 14:36:37 +00:00
Daniel Stenberg
bae77c0a46
bug report #1156287 , ftp upload from VMS
2005-04-05 07:33:30 +00:00
Daniel Stenberg
5d1349031c
spell fixes, based on the Debian bug report #302820 submitted by "A Costa"
2005-04-04 08:07:04 +00:00
Daniel Stenberg
32a446cf19
format mistake in --form-string, pointed out by Owen Watson
2005-03-30 06:31:32 +00:00
Daniel Stenberg
970722483c
Added --proxy-anyauth
2005-03-28 22:17:49 +00:00
Daniel Stenberg
8f646eef45
add 'FTP ASCII transfers' here, since they seem to be frequently attempted
...
these days...!
2005-03-17 08:09:10 +00:00
Daniel Stenberg
c765213aaa
found a common lisp binding
2005-03-12 22:55:57 +00:00
Daniel Stenberg
2f8085af15
David Houlder added --form-string
2005-03-12 19:39:27 +00:00
Daniel Stenberg
fc80c714e8
added CURL_VERSION_SSPI
2005-03-11 15:18:46 +00:00
Dan Fandrich
205f8b266c
Fixed LDAP library file name bug (KNOWN_BUGS #1 ). configure now auto-detects
...
the correct dynamic library names by default, and provides override switches
--with-ldap-lib, --with-lber-lib and --without-lber-lib. Added
CURL_DISABLE_LDAP to platform-specific config files to disable LDAP
support on those platforms that probably don't have dynamic OpenLDAP
libraries available to avoid compile errors.
2005-03-11 05:28:07 +00:00
Daniel Stenberg
8a96aec567
mktime() returns a time_t. time_t is often 32 bits, even on many architectures
...
that feature 64 bit 'long'.
Some systems have 64 bit time_t and deal with years beyond 2038. However, even
some of the systems with 64 bit time_t returns -1 for dates beyond 03:14:07
UTC, January 19, 2038. (Such as AIX 5100-06)
2005-03-08 16:31:56 +00:00
Daniel Stenberg
5cd9f57137
days are english
2005-03-08 11:15:29 +00:00
Daniel Stenberg
6f752c64bc
Dave Dribin made it possible to set CURLOPT_COOKIEFILE to "" to activate
...
the cookie "engine" without having to provide an empty or non-existing file.
2005-03-04 00:26:50 +00:00
Daniel Stenberg
6af315e50c
VB binding, updated the .NET info
2005-03-03 23:25:13 +00:00
Daniel Stenberg
85baebd0d4
mention filename= for the -F
2005-02-17 07:47:32 +00:00
Gisle Vanem
62082293c5
Some functions are static here, but extern in libxml's
...
SAX.h. gcc doesn't like that. Rename.
2005-02-09 15:15:01 +00:00
Daniel Stenberg
14aa3fa258
add missing error codes
2005-02-09 14:13:21 +00:00
Daniel Stenberg
ab938bb9bd
-O clarification
2005-02-08 23:39:47 +00:00
Daniel Stenberg
67ff8e3ea3
valgrind errors occur too often when 'make test' is used. It is because too
...
many third-party libs and tools have problems. When curl is built without
--disable-shared, the testing is done with a front-end script which makes the
valgrind testing include (ba)sh as well and that often causes valgrind
errors. Either we improve the valgrind error scanner a lot to better identify
(lib)curl errors only, or we disable valgrind checking by default
2005-02-05 10:25:20 +00:00
Daniel Stenberg
2248599ae1
fix type
2005-02-04 23:53:12 +00:00
Daniel Stenberg
ab96e2d6e9
another example
2005-02-02 19:25:49 +00:00
Daniel Stenberg
6b81cf4bc9
HTML parsing example with libtidy, by Jeff Pohlmeyer
2005-02-02 19:25:37 +00:00
Daniel Stenberg
4a9e12542d
7.13 coming up
2005-02-01 07:54:36 +00:00
Daniel Stenberg
21b4105454
somewhat nicer libcurl usage
2005-01-31 20:03:01 +00:00
Daniel Stenberg
d7648d94ca
htmltitle
2005-01-31 18:23:42 +00:00
Daniel Stenberg
883343ba63
HTML <head> parsing (with libxml) example code by Lars Nilsson.
2005-01-31 18:22:40 +00:00
Daniel Stenberg
c5b448038f
corrected the URL
2005-01-29 13:54:15 +00:00
Daniel Stenberg
4551e7ce49
KNOWN_BUGS #17 fixed. A DNS cache entry may not remain locked between two
...
curl_easy_perform() invokes. It was previously unlocked at disconnect, which
could mean that it remained locked between multiple transfers. The DNS cache
may not live as long as the connection cache does, as they are separate.
To deal with the lack of DNS (host address) data availability in re-used
connections, libcurl now keeps a copy of the IP adress as a string, to be able
to show it even on subsequent requests on the same connection.
2005-01-28 22:14:48 +00:00
Daniel Stenberg
4efd751eda
new curlpp URL
2005-01-26 11:53:49 +00:00
Daniel Stenberg
2337efc3b1
fixed sort, mention C, the java binding is now maintained by Vic Hanson
2005-01-26 11:53:12 +00:00
Daniel Stenberg
b942a25a45
add number to the bugs to make them easier to refer to
2005-01-25 23:40:35 +00:00
Daniel Stenberg
beab9a9696
two known bugs
2005-01-25 22:21:42 +00:00
Daniel Stenberg
177dbc7be0
Ian Ford asked about support for the FTP command ACCT, and I discovered it is
...
present in RFC959... so now (lib)curl supports it as well. --ftp-account and
CURLOPT_FTP_ACCOUNT set the account string. (The server may ask for an account
string after PASS have been sent away. The client responds with "ACCT [account
string]".) Added test case 228 and 229 to verify the functionality. Updated
the test FTP server to support ACCT somewhat.
2005-01-25 22:13:12 +00:00
Daniel Stenberg
52f6c437fe
--protocols is added in 7.13.0
2005-01-25 12:06:12 +00:00
Daniel Stenberg
80a8be6319
David Shaw contributed a fairly complete and detailed autoconf macro you can
...
use to detect libcurl and setup variables for the protocols the installed
libcurl supports: docs/libcurl/libcurl.m4
2005-01-25 09:29:05 +00:00
Daniel Stenberg
53143910a1
\fI marked \fP more function calls etc.
2005-01-22 22:43:04 +00:00
Daniel Stenberg
95656cd7f3
If you're using libcurl as a win32 DLL, you MUST use the CURLOPT_WRITEFUNCTION
...
if you set CURLOPT_WRITEDATA - or you will experience crashes.
2005-01-22 22:24:17 +00:00
Daniel Stenberg
7e42cb61f7
FTP third transfer support overhaul. See CHANGES for details.
2005-01-21 09:32:32 +00:00
Daniel Stenberg
6c038680f9
clarify the struct name for CURLOPT_HTTPPOST
2005-01-21 08:56:04 +00:00
Daniel Stenberg
7472ede32a
Philippe Hameau found out that -Q "+[command]" didn't work, although some code
...
was written for it. I fixed and added test case 227 to verify it. The curl.1
man page didn't mention the '+' so I added it.
2005-01-20 22:22:12 +00:00
Daniel Stenberg
8dd799b4bd
If you give a *_LARGE option you MUST make sure that the type of the passed-in
...
argument is a curl_off_t. If you use CURLOPT_INFILESIZE (without _LARGE) you
must make sure that to pass in a type 'long' argument. */
2005-01-20 14:24:56 +00:00
Daniel Stenberg
3050ae57c0
Stephan Bergmann made libcurl return CURLE_URL_MALFORMAT if an FTP URL
...
contains %0a or %0d in the user, password or CWD parts. (A future fix would
include doing it for %00 as well - see KNOWN_BUGS for details.) Test case 225
and 226 were added to verify this
2005-01-19 21:56:02 +00:00
Daniel Stenberg
2fe3829e5e
add a URL to an article about making Apache support PUT
2005-01-19 10:09:15 +00:00
Daniel Stenberg
8a14dd25a9
updated the wording for -B/--use-ascii
2005-01-17 09:18:04 +00:00
Daniel Stenberg
534a8a05f3
mention --netrc in the -u description
2005-01-16 08:34:18 +00:00
Daniel Stenberg
9395cad379
support for retrieving used IP addresses
2005-01-11 22:26:00 +00:00
Daniel Stenberg
c5b2e85b47
Dan Torop cleaned up a few no longer used variables from David Phillips'
...
select() overhaul fix.
2005-01-11 20:22:44 +00:00
Gisle Vanem
894ec46ef4
Note about the static lib requirement; -DCURL_STATICLIB.
2005-01-08 16:35:03 +00:00
Gisle Vanem
2dcb8b674f
Changed curl.dll to libcurl.dll.
2005-01-04 16:16:03 +00:00
Daniel Stenberg
9cdaae94cc
just narrowed some text to fit within 80 cols
2005-01-04 16:01:34 +00:00
Daniel Stenberg
4f4ffa98b5
Test case 241 fails on all systems that support IPv6 but that don't have the
...
host name 'ip6-localhost' in /etc/hosts (or similar) since the test case uses
that host name to test the IPv6 name to address resolver.
2004-12-25 22:51:37 +00:00
Daniel Stenberg
695f95aad1
mention the new --protocols
2004-12-24 09:02:23 +00:00
Dan Fandrich
f5e0ff2170
Added LDAP library issue.
2004-12-23 22:34:00 +00:00
Daniel Stenberg
3acda85c2b
added CURLINFO_HTTP_CONNECTCODE
2004-12-22 12:31:55 +00:00
Daniel Stenberg
dbb69797cf
uh, fixed!
2004-12-22 09:21:04 +00:00
Daniel Stenberg
2910880b15
Added: 4 protocols we _could_ support and the CONNECT HTTP/1.0 detail we might
...
fix one day.
2004-12-22 09:19:29 +00:00
Daniel Stenberg
8b5f0abef1
more about error codes
2004-12-21 21:35:00 +00:00
Daniel Stenberg
4ba1eb26fa
Added test case 217 that verified CURLINFO_HTTP_CONNECTCODE, and I made the
...
-w option support 'http_connect' to make it easier to verify!
2004-12-21 19:59:35 +00:00
Daniel Stenberg
3de85777de
mention how the FTP code should be fixed one day
2004-12-21 10:54:21 +00:00
Daniel Stenberg
951fdeba67
How do I list the root dir of an FTP server?
2004-12-21 09:37:55 +00:00
Daniel Stenberg
d5be114c07
mention the new cookie api plans
2004-12-18 10:28:04 +00:00
Daniel Stenberg
6e43a4ccce
Jean-Marc Ranger pointed out that the returned data doesn't survive a call
...
to curl_multi_remove_handle() either.
2004-12-18 10:24:49 +00:00
Daniel Stenberg
9359498b06
clarify that the app must free the engine list
2004-12-14 22:47:13 +00:00
Gisle Vanem
5c14b3be6d
Document CURLINFO_SSL_ENGINES and "--engine".
2004-12-13 20:14:04 +00:00
Daniel Stenberg
d531926246
mention the maybe-missing initial zero in the vernum output
2004-12-11 18:38:47 +00:00
Daniel Stenberg
b6f855cb9b
Dan Fandrich corrects spelling mistakes
2004-12-10 21:56:35 +00:00
Daniel Stenberg
b6646310e8
Dan Fandrich extended the cross compile section and corrected spelling errors
2004-12-10 21:55:05 +00:00
Daniel Stenberg
c1312cab1f
Added two chapters: Custom Request Elements and Debug.
2004-12-10 09:45:55 +00:00
Daniel Stenberg
163518778c
minor updates
2004-12-07 23:08:28 +00:00
Daniel Stenberg
4b1c0bd1e7
CURLOPT_FTPSSLAUTH was added in 7.12.2
2004-12-03 11:25:06 +00:00
Daniel Stenberg
0966ddafaa
As reported in Mandrake's bug tracker bug 12285
...
(http://qa.mandrakesoft.com/show_bug.cgi?id=12285 ), when connecting to an
IPv6 host with FTP, --disable-epsv (or --disable-eprt) effectively disables
the ability to transfer a file. Now, when connected to an FTP server with
IPv6, these FTP commands can't be disabled even if asked to with the
available libcurl options.
2004-11-29 21:25:07 +00:00
Daniel Stenberg
16e9a9eaef
removed one we won't do, removed the CWD optimize as it is (partly) done
2004-11-28 13:04:34 +00:00
Gisle Vanem
f0e66d8c76
Added anyauthput.exe.
2004-11-26 15:04:15 +00:00
Daniel Stenberg
3e1caa6185
HTTP "auth done right". See lib/README.httpauth
2004-11-24 16:11:35 +00:00
Gisle Vanem
51a87fa652
Clarify the static vs. import lib issue on Win32.
2004-11-24 15:14:42 +00:00
Daniel Stenberg
b2dad0342f
added a bunch of people who really deserve to be here
2004-11-23 22:15:49 +00:00
Daniel Stenberg
4afc4aed73
yet another binding
2004-11-23 09:22:23 +00:00
Daniel Stenberg
f84d2b4d36
trying a version with URLs for all function calls
2004-11-22 16:24:46 +00:00
Daniel Stenberg
4207ef3d27
removed trailing whitespace
2004-11-22 14:41:36 +00:00
Daniel Stenberg
b3572269a4
removed unused variable and trailing whitespace
2004-11-22 14:41:24 +00:00
Daniel Stenberg
097d449cc1
remove curl_ prefix from functions not present in libcurl
2004-11-22 14:07:23 +00:00
Daniel Stenberg
7f44713487
re-indented to curl style
2004-11-22 13:48:35 +00:00
Daniel Stenberg
b7a6b78e0c
renamed curl_thread to my_thread to avoid confusion
2004-11-22 13:43:52 +00:00
Daniel Stenberg
855a9eff76
add URLs in comments for all libcurl function calls
2004-11-22 13:39:23 +00:00
Daniel Stenberg
4be60ac155
the FD_SETSIZE problem is fixed
2004-11-21 23:13:13 +00:00
Daniel Stenberg
e80f566a14
added comment for windows people about READFUNCTION being needed
2004-11-21 12:42:28 +00:00
Daniel Stenberg
87753cda49
mention the openssl callbacks for SSL multithread
2004-11-16 08:49:51 +00:00
Daniel Stenberg
86f059dcfb
tiny format fix for nicer man output
2004-11-15 21:41:21 +00:00
Daniel Stenberg
8475a0df2f
new -w variables supported
2004-11-15 11:25:39 +00:00
Daniel Stenberg
9e7534a46e
binding for R
2004-11-15 08:54:29 +00:00
Daniel Stenberg
1b02ad5e8a
format mistake fixed
2004-11-12 06:42:30 +00:00
Daniel Stenberg
c3323b1902
clarify and update according to commit made just now
2004-11-11 23:11:32 +00:00
Daniel Stenberg
cd73a733c7
dates from 2038 or later now return 0x7fffffff when 32 bit time_t is used
2004-11-11 09:26:09 +00:00
Daniel Stenberg
fd884a3cd2
more retry stuff
2004-11-04 16:17:23 +00:00
Daniel Stenberg
1887629c5c
test server port numbers are now easily changed
2004-11-04 16:15:26 +00:00
Daniel Stenberg
8a66584db4
documented the current --retry options
2004-11-02 09:43:50 +00:00
Daniel Stenberg
186f433e40
modified to not use realloc() on a NULL pointer
2004-11-02 08:26:55 +00:00
Daniel Stenberg
2a80a4c521
mention how LDFLAGS=-R can be used (or LD_LIBRARY_PATH or ld.so.conf)
2004-10-26 08:09:16 +00:00
Daniel Stenberg
a00e7f0f5e
Tomas Pospisek filed bug report #1053287 that proved -C - and --fail on a
...
file that was already completely downloaded caused an error, while it
doesn't if you don't use --fail! I added test case 194 to verify the fix.
Grrr. CURLOPT_FAILONERROR is now added to the list stuff to remove in
libcurl v8 due to all the kludges needed to support it.
2004-10-25 11:28:40 +00:00
Daniel Stenberg
34089c93bb
format update
2004-10-25 11:05:37 +00:00
Daniel Stenberg
18d80b9e8f
iconv 2.1.3 is considered bad for test case 165
2004-10-19 18:49:31 +00:00
Daniel Stenberg
2f069ad3e2
snart isn't really used these days so we cut out the reference to it
2004-10-19 15:34:05 +00:00
Daniel Stenberg
a3dbe03e80
added num_connects
2004-10-19 15:32:31 +00:00
Daniel Stenberg
f4bef25b5e
CURLINFO_NUM_CONNECTS and more
2004-10-19 15:30:08 +00:00
Gisle Vanem
0bfa601a9f
Open "debugit" in binary mode ("rb").
2004-10-16 13:17:15 +00:00
Daniel Stenberg
298076e00f
--enable-ares on AIX has problem
2004-10-08 12:59:36 +00:00
Daniel Stenberg
0d2cdd9773
Use 'struct lifreq' and SIOCGLIFADDR
2004-10-08 09:57:33 +00:00
Gisle Vanem
a91a75355d
*** empty log message ***
2004-10-06 13:24:08 +00:00
Daniel Stenberg
39af394a1c
removed tabs and trailing whitespace from source
2004-10-06 07:50:18 +00:00
Daniel Stenberg
c368800877
name mix fix
2004-10-04 12:54:58 +00:00
Daniel Stenberg
f4f961c4ea
added info about how users get info (like the CURLcode return code) from
...
individual transfers
2004-10-03 17:38:57 +00:00
Daniel Stenberg
bb48ccedd7
mention when this option was added
2004-10-01 06:43:48 +00:00
Daniel Stenberg
be1cece69b
- Larry Campbell added CURLINFO_OS_ERRNO to curl_easy_getinfo() that allows an
...
app to retrieve the errno variable after a (connect) failure. It will make
sense to provide this for more failures in a more generic way, but let's
start like this.
2004-09-30 21:01:23 +00:00
Daniel Stenberg
35292e794a
--max-redirs is _not_ -Z
2004-09-30 14:38:29 +00:00
Daniel Stenberg
543ab6f331
added URL to the exception paragraph in the GPL FAQ
2004-09-19 22:37:26 +00:00
Daniel Stenberg
6a06667cc0
Added CURLOPT_FTPSSLAUTH
2004-09-16 21:45:16 +00:00
Daniel Stenberg
2544c78083
Bertrand Demiddelaer's correction
2004-09-16 14:26:04 +00:00
Daniel Stenberg
40b9b6f6dc
ftp-ssl mistake corrected
2004-09-16 08:45:11 +00:00
Daniel Stenberg
106695d45e
the new date parser affects -z
2004-09-15 07:31:48 +00:00
Daniel Stenberg
f71b3f48a1
Replaced the former date parser with a rewrite. No more yacc/bison needed.
2004-09-15 07:28:04 +00:00
Daniel Stenberg
73dd450147
describes how you can extract the CA cert from a site using the openssl tool
2004-09-12 18:27:12 +00:00
Daniel Stenberg
0ec4c66fba
fixed -F to support setting type= even on parts that aren't file-uploads
2004-09-10 21:47:52 +00:00
Daniel Stenberg
33929117f9
curl --sync
2004-09-09 06:58:01 +00:00
Daniel Stenberg
428741d7cf
clarify CURLE_SSL_CERTPROBLEM somewhat
2004-09-02 21:05:56 +00:00
Daniel Stenberg
5f60188b8a
use the correct struct name in the example
2004-09-02 20:42:44 +00:00
Daniel Stenberg
75a6fdeb58
added more info on the nobody
2004-09-01 12:05:59 +00:00
Daniel Stenberg
5f3fa92062
minor edit of HTTPGET
2004-09-01 09:25:19 +00:00
Daniel Stenberg
66077ae48b
fix formatting flaw
2004-09-01 09:24:01 +00:00
Daniel Stenberg
811dfd710b
mention when the function was added to the lib
2004-08-31 06:03:16 +00:00
Daniel Stenberg
9432bfe90c
updated with minor edits
2004-08-27 07:17:52 +00:00
Daniel Stenberg
37bf6da9c8
don't do SO_KEEPALIVE, we already have a finer grained method built-in
2004-08-27 07:04:31 +00:00
Daniel Stenberg
b3ebbd60a2
added some more details
2004-08-26 13:26:27 +00:00
Daniel Stenberg
4adfcd4fd7
not accurate anymore anyway
2004-08-25 11:18:33 +00:00
Daniel Stenberg
c10196afc0
Frankie V's description on how to get a CA cert for a random site using
...
IE
2004-08-25 08:09:48 +00:00
Daniel Stenberg
49746d1dce
returned memory should not be freed
2004-08-24 20:36:38 +00:00
Daniel Stenberg
d869b51a57
Expect: 100-continue info added
2004-08-23 14:46:43 +00:00
Daniel Stenberg
dbacc81af7
added note about WRITEFUNCTION now being called with zero bytes if the file
...
to be transfered is empty
2004-08-23 14:41:54 +00:00
Daniel Stenberg
d736ac51c0
stripped trailing whitespace
2004-08-23 14:22:52 +00:00
Daniel Stenberg
e8b295ff7d
lost of more into on how to tweak some headers
2004-08-23 14:22:44 +00:00
Daniel Stenberg
4a4490d5f1
debug.c is a fresh new example showing how to use the DEBUGFUNCTION to get
...
lots of fine info from a transfer
2004-08-23 14:22:26 +00:00
Daniel Stenberg
46313be2f5
added more header info for PUT and POST requests
2004-08-23 14:04:38 +00:00
Daniel Stenberg
cd52b9f0da
Alexander Krasnostavsky made the write callback get called even when a zero
...
byte file is downloaded.
2004-08-20 12:09:09 +00:00
Daniel Stenberg
c3d74ffe48
socks proxy and timeouts bug
2004-08-20 10:52:35 +00:00
Daniel Stenberg
ee400f9552
reuse handles in PHP/CURL works - Kirk Hedden told us
2004-08-19 06:31:29 +00:00
Daniel Stenberg
9ac7629e2c
PHP FAQ
2004-08-18 11:18:36 +00:00
Daniel Stenberg
e139e49826
see also the reset function
2004-08-17 12:39:10 +00:00
Daniel Stenberg
3838745fdb
mention the reset function
2004-08-17 12:37:35 +00:00
Daniel Stenberg
8b6e87abee
summary edit: mention that some options take a curl_off_t
2004-08-16 10:49:57 +00:00
Daniel Stenberg
84ec4068de
added two good ideas
2004-08-13 12:06:30 +00:00
Daniel Stenberg
1dc8c1dbc8
removed the ispell-added local word, compressed the final links into a
...
short section
2004-08-13 11:56:15 +00:00
Daniel Stenberg
e9812c53cb
strip trailing whitespace
2004-08-13 11:53:33 +00:00
Daniel Stenberg
1d3233612a
Added "5.9 How does libcurl resolve host names?" since I wrote the text in
...
a mail anyway the other day.
2004-08-12 14:09:10 +00:00
Daniel Stenberg
8362a34cef
updated with recent changes
2004-08-12 14:08:46 +00:00
Daniel Stenberg
edd16d978f
hm
2004-08-12 11:39:00 +00:00
Daniel Stenberg
4356356305
3.16 What certificates do I need with I use SSL?
...
my first attempt at a basic description of the certs involvede
2004-08-12 11:02:01 +00:00
Daniel Stenberg
cb88135220
removed trailing whitespace, indented to curl-style levels
2004-08-12 07:01:20 +00:00
Daniel Stenberg
0ca1b6afcf
--disable-[protocol] doesn't disable tests of the specific protocol
2004-08-11 11:18:24 +00:00
Daniel Stenberg
d3c9f3d6f8
clarify that CURLE_FTP_USER_PASSWORD_INCORRECT might in fact get returned
...
even if user and password are correct
2004-08-11 08:44:36 +00:00
Daniel Stenberg
7ca7f7a725
added several recent bindings
2004-08-11 06:42:20 +00:00
Daniel Stenberg
355b3d3057
updated the CURLOPT_POST description after input from Alan Pinstein
2004-08-10 13:22:08 +00:00
Daniel Stenberg
17de7e0f1c
minor reformat to suit the new FAQ parser
2004-08-10 12:41:44 +00:00
Daniel Stenberg
da30242640
7.12.1 notes
2004-08-10 08:42:54 +00:00
Daniel Stenberg
811edcde18
added "5.8 libcurl.so.3: open failed: No such file or directory" and made
...
some general cleanups
2004-08-10 08:41:41 +00:00
Daniel Stenberg
338c2da24f
GSS/Kerberos 5 for ftp
2004-08-09 12:39:28 +00:00
Daniel Stenberg
b5cafc0b83
added info about my current idea about option separation between URLs on
...
the command line
2004-08-09 12:36:17 +00:00
Daniel Stenberg
f4783bda27
--negotiate does not work without username/password, bug report #1004841
2004-08-09 12:15:23 +00:00
Daniel Stenberg
d003f6e125
mention the new cool CA extraction way just documented
2004-08-09 07:02:51 +00:00
Daniel Stenberg
d892a4dc23
mention this is new
2004-07-31 19:47:00 +00:00
Daniel Stenberg
496ea65f39
link to reset as well
2004-07-31 19:46:25 +00:00
Daniel Stenberg
6577b15d08
curl_easy_reset() documented
2004-07-31 19:46:01 +00:00
Daniel Stenberg
060b6ce148
the multi interface is not so new anymore!
2004-07-17 08:24:22 +00:00
Daniel Stenberg
35618b4712
minor format fix
2004-07-17 08:22:50 +00:00
Daniel Stenberg
15a403a98d
now known as libcurl-tutorial.3
2004-07-14 15:33:27 +00:00
Daniel Stenberg
a92b7c1b16
Jason Nye pointed out that callbacks don't need to use the "C namespace"
2004-07-14 15:32:09 +00:00
Gunter Knauf
2be57d0833
minor corrections.
2004-07-12 11:29:36 +00:00
Gunter Knauf
2c3e557b5c
updated MSVC build instructions.
2004-07-11 13:49:52 +00:00
Daniel Stenberg
570455b21d
clarify the -Q option a bit better
2004-07-06 08:08:13 +00:00
Daniel Stenberg
1a8f7e830c
Added README.netware to the release archive
2004-07-05 11:43:32 +00:00
Gunter Knauf
dfc85b7291
added line where to find compile instructions.
2004-07-05 02:34:17 +00:00
Gunter Knauf
1457b80617
minor NetWare upate.
2004-07-05 02:20:20 +00:00
Gunter Knauf
e9d95f1a25
added a simple README.netware.
2004-07-05 01:00:47 +00:00
Gunter Knauf
67e40a2b16
added section for compiling NetWare target.
2004-07-05 00:55:48 +00:00
Daniel Stenberg
5a70e42428
I prefer CURLOPT_WRITEDATA before CURLOPT_FILE
2004-07-02 14:00:49 +00:00
Daniel Stenberg
950aa1c743
configure --disable-http works these days
2004-07-02 09:14:46 +00:00
Daniel Stenberg
35840a2c5c
make functions use size_t instead of int next major update
2004-07-01 08:22:52 +00:00
Daniel Stenberg
574e911375
Another Gisle update
2004-06-30 12:34:33 +00:00
Daniel Stenberg
c14650caec
not PIN code, pass phrase
2004-06-30 11:34:57 +00:00
Daniel Stenberg
782ade7223
fixed
2004-06-30 09:29:00 +00:00
Daniel Stenberg
c81ac51e5c
Gisle's update
2004-06-29 18:43:04 +00:00
Daniel Stenberg
d4b0999415
'M-x ispell-buffer'
2004-06-29 13:16:30 +00:00
Daniel Stenberg
964066c0de
Added missing info for the command line tool, as noted by Mike Kienenberger
2004-06-29 07:58:52 +00:00
Daniel Stenberg
6f252f4704
reset CURLOPT_CUSTOMREQUEST with NULL
2004-06-27 21:19:54 +00:00
Daniel Stenberg
a20eb6df1b
reset CURLOPT_HTTPHEADER with NULL
2004-06-22 17:22:30 +00:00
Daniel Stenberg
1886893d66
Added blurb for the READFUNCTION, including the new CURL_READFUNC_ABORT
...
return code.
2004-06-21 14:09:23 +00:00
Daniel Stenberg
0d259b898b
updates
2004-06-21 08:28:18 +00:00
Daniel Stenberg
c136b80af5
refer to the new tutorial man page
2004-06-21 08:28:10 +00:00
Daniel Stenberg
83b87d53c1
removed libcurl-the-guide from the dist
2004-06-21 08:27:45 +00:00
Daniel Stenberg
1e99f1ee41
libcurl-tutorial.3 is the former libcurl-the-guide converted to man page format
2004-06-21 08:17:08 +00:00
Daniel Stenberg
a737864a1c
ispell-buffer
2004-06-18 13:11:49 +00:00
Daniel Stenberg
752ef08141
lots of multi interface description but also some general updates and additions
2004-06-14 14:44:28 +00:00
Daniel Stenberg
9733cd59bb
removed reference to the removed curl_formparse
2004-06-09 08:18:17 +00:00
Daniel Stenberg
b3caf7bfa8
Setting CURLOPT_RANGE to NULL disables it.
...
Setting CURLOPT_RESUME_FROM to 0 prevents a resumed transfer.
2004-06-09 08:05:23 +00:00
Daniel Stenberg
2b8775dff7
7.12.0 introduced IDN support
2004-06-03 11:43:21 +00:00
Daniel Stenberg
7dcb102733
Mention the python-isque mailing list, don't mention the commit mailing lists
...
as they are probably very rarely intresting to the "common people" anyway.
2004-06-03 11:30:30 +00:00
Daniel Stenberg
aa0e32060e
CURLE_FAILED_INIT is returend when an unknown option is set
2004-06-03 11:19:35 +00:00
Daniel Stenberg
2e8f37aca5
Added example of how to use the upcoming support for FTP 3rd party transfers
2004-06-03 11:15:27 +00:00
Daniel Stenberg
9e987ac6a2
getinfo.c is a new tiny example that uses curl_easy_getinfo() to get the
...
content-type after a transfer.
2004-06-03 09:20:48 +00:00
Daniel Stenberg
0078944486
CURLOPT_PUT is deprecated
2004-06-02 14:06:49 +00:00
Daniel Stenberg
8bbf9b13af
Renaud Duhaut corrected the unescaping procedure
2004-06-01 08:33:15 +00:00
Daniel Stenberg
8d611bec6e
--create-dirs clarification
2004-06-01 07:03:46 +00:00
Daniel Stenberg
15cd35f67f
added example that makes an upload to a file:// url
2004-05-26 09:00:03 +00:00
Daniel Stenberg
459801d6e0
strip trailing whitespace
2004-05-26 08:58:25 +00:00
Daniel Stenberg
765754d39d
--proxy-basic added for completeness
2004-05-25 14:44:25 +00:00
Daniel Stenberg
f7f6b288eb
removed some stuff that actually is done now, added the --optionseparator
...
idea (not really new, but its better to have it mentioned in here)
2004-05-25 14:39:53 +00:00
Daniel Stenberg
11ee9540bf
Bug report #948950 , excessive amount of file descriptors might crash libcurl
2004-05-25 14:28:44 +00:00
Daniel Stenberg
88229a0f2a
new example proving that the debug callback works even when the multi
...
interface is used
2004-05-24 15:16:53 +00:00
Daniel Stenberg
120394cc45
remove trailing whitespace
2004-05-24 15:16:29 +00:00
Daniel Stenberg
1adfe0fe18
multi interface, debug callback
2004-05-24 15:12:37 +00:00
Daniel Stenberg
9fb4e019fa
IDN is a recognized feature
2004-05-24 13:23:54 +00:00
Daniel Stenberg
74551597b1
fixed a reference
2004-05-24 13:21:31 +00:00
Daniel Stenberg
a94e117ede
language!
2004-05-19 09:09:31 +00:00
Daniel Stenberg
662cb30372
Set CURLOPT_USERAGENT too
2004-05-19 09:08:19 +00:00
Daniel Stenberg
23a43c6e0f
Seshubabu Pasam's format fixes and added notes about DER not working for
...
some (SSL-)options.
2004-05-17 07:12:32 +00:00
Daniel Stenberg
47d52d4eca
added https.c
2004-05-13 08:23:09 +00:00
Daniel Stenberg
4973b0f88a
basic https fetching script
2004-05-13 08:22:40 +00:00
Daniel Stenberg
91025d1dd6
new man page
2004-05-12 08:10:25 +00:00
Daniel Stenberg
c8807438ce
updated to reflect reality!
2004-05-11 14:15:49 +00:00
Daniel Stenberg
bbafb2eb27
curl_global_init_mem() allows the memory functions to be replaced.
...
memory.h is included everywhere for this.
2004-05-11 11:30:23 +00:00
Daniel Stenberg
7332350e85
minor update edits
2004-05-05 06:11:57 +00:00
Daniel Stenberg
c19c3bd15a
multipart formposts should be more streamy
2004-05-04 14:36:29 +00:00
Daniel Stenberg
2960d37d71
removed curl_formparse() from the library
2004-05-04 08:24:13 +00:00
Daniel Stenberg
0363fbc411
Added --proxy-digest, added the standard curl source header to this file.
2004-05-03 14:55:31 +00:00
Daniel Stenberg
e3bc92ae53
fixed the pdf and html for the strerror functions
2004-05-03 14:40:22 +00:00
Daniel Stenberg
38cc79a54f
these functions are marked to get removed from the public API "soon"
2004-04-30 08:38:08 +00:00
Daniel Stenberg
630b73bfa8
Added LICENSE-MIXING to the release archive
2004-04-27 18:31:35 +00:00
Daniel Stenberg
58f1cc0b5f
added curl_*_strerror
2004-04-27 07:05:40 +00:00
Daniel Stenberg
98c70b73f2
added doctype tag to get HTML compliant
2004-04-27 07:05:22 +00:00
Daniel Stenberg
211004bb0d
my nroff 1.18.1 complained the URL as it contains a nroff combo somehow
...
and when I modified it slightly the warning dissappeared...
2004-04-26 21:12:10 +00:00
Daniel Stenberg
923ce98e42
Kim Karlsson pointed out that error 57 was wrongly documented
2004-04-26 09:28:02 +00:00
Daniel Stenberg
5de447b0cb
clarified that select() timeouts should always remain rather short
2004-04-15 15:05:12 +00:00
Daniel Stenberg
220cd010bd
format fix
2004-04-14 12:13:21 +00:00
Daniel Stenberg
9c0a386246
minor format fix
2004-04-13 14:34:12 +00:00
Daniel Stenberg
bba3bb7556
eh, these can't be used for poll()! ;-)
2004-04-13 14:31:49 +00:00
Daniel Stenberg
c1422864b5
additional info
2004-04-13 14:27:47 +00:00
Daniel Stenberg
1ca9ce5ef4
removed the BUGS section since it offers nothing good
2004-04-13 09:08:52 +00:00
Daniel Stenberg
72b1144b8c
getting only a 100 Continue response and nothing else, when talking HTTP,
...
is now treated as an error by libcurl
2004-04-07 14:27:54 +00:00
Daniel Stenberg
348fe0e210
--limit-rate using -d or -F does not work
2004-04-07 14:03:13 +00:00
Daniel Stenberg
3b491d0f73
Moved long-standing issues over from TODO-RELEASE to the more long-term TODO
...
file.
2004-04-06 15:29:01 +00:00
Daniel Stenberg
7c72f8ee6c
prepend the man3 dir to the file name to work better.
...
Robin Kay pointed this out.
2004-04-02 11:04:34 +00:00
Daniel Stenberg
9d99af5329
if select returns -1, bail out of the loop
2004-04-02 06:40:31 +00:00
Daniel Stenberg
64cc14e9e6
one issue less
2004-03-30 15:35:09 +00:00
Daniel Stenberg
a7376968d2
mention the fact that you can append a new CA cert to the existing bundle too
2004-03-30 06:46:36 +00:00
Daniel Stenberg
6b33a5f954
use the correct struct
2004-03-28 21:41:10 +00:00
Daniel Stenberg
ad6699e0c4
some more password blurb
2004-03-26 13:20:28 +00:00
Daniel Stenberg
bb3d6e8552
tcp-nodelay patch by Joe Halpin
2004-03-25 13:37:18 +00:00
Daniel Stenberg
4b78b4124e
Tor Arntsen's major ispell patch
2004-03-24 21:40:45 +00:00
Daniel Stenberg
a784bd0797
fixed the ntlm problem with longish passwords
2004-03-22 13:56:48 +00:00
Daniel Stenberg
5b55f9ecb3
Gnter Knauf's NetWare changes.
2004-03-17 12:46:42 +00:00
Daniel Stenberg
eea2287068
random updates
2004-03-16 07:56:51 +00:00
Daniel Stenberg
5fe5de7511
added the CA bundle default path, and mention the risk that the server you
...
try to talk to may be an imposter
2004-03-16 07:25:52 +00:00
Daniel Stenberg
4a6b9972dd
ntlm and long passwords
2004-03-15 16:32:13 +00:00
Daniel Stenberg
03a0988ce8
better formatting to create fine links in the web version
2004-03-15 12:42:19 +00:00
Daniel Stenberg
7de892eeb4
more formatting fixes
2004-03-15 12:41:24 +00:00
Daniel Stenberg
8c4e91a653
refer to function names better to enhance the HTML output
2004-03-15 11:56:07 +00:00
Daniel Stenberg
6dc8fac122
random formatting updates to look better in HTML version
2004-03-15 11:37:37 +00:00
Daniel Stenberg
8114f8562b
use .NF for the struct part to looke better in HTML
...
format some function references properly
2004-03-15 11:30:29 +00:00
Daniel Stenberg
c79fa187b9
more fixes
2004-03-15 11:26:53 +00:00
Daniel Stenberg
237ec68b0e
better formatting of functions to get better links in the web version
2004-03-15 10:26:08 +00:00
Daniel Stenberg
4ebf4f6e55
better mentioning of other functions to create proper hrefs in the web
...
version
2004-03-15 10:23:14 +00:00
Daniel Stenberg
bc7122f6e2
CURLOPT_POSTFIELDSIZE_LARGE is added in 7.11.1
2004-03-12 09:14:45 +00:00
Daniel Stenberg
1ebda8fa0e
Added CURLOPT_POSTFIELDSIZE_LARGE to offer a large file version of the
...
CURLOPT_POSTFIELDSIZE option to allow really big HTTP POSTs.
2004-03-12 08:55:47 +00:00
Daniel Stenberg
e94c46c00c
Removed John Clayton's really odd bug since its never been reported again and
...
it was quite a long time since he experienced that one.
2004-03-08 14:04:10 +00:00
Daniel Stenberg
9d311ff2c0
mention error 64
2004-03-08 13:57:38 +00:00
Daniel Stenberg
75e1483e0d
'make clean' should only remove the generated html files, index.html is not
...
one of them!
2004-03-05 08:01:55 +00:00
Daniel Stenberg
8a4532ca2d
mention the D binding
2004-03-05 07:57:07 +00:00
Daniel Stenberg
13f98c5c18
Multiple updates, most of them being proper formatting to create nice html
...
links in the web pages, but also additional facts and removal of old crap.
2004-03-05 07:55:02 +00:00
Daniel Stenberg
89829093ca
large file in jan 2004
2004-03-02 10:22:05 +00:00
Daniel Stenberg
7cb10a1853
various updates
2004-03-02 10:08:04 +00:00
Daniel Stenberg
33d67c68de
two items fixed, one so old I don't think its valid anymore
2004-03-02 10:07:47 +00:00
Daniel Stenberg
eddeb49fb6
clean the html and pdf files
2004-03-02 08:28:23 +00:00
Daniel Stenberg
526c61c657
global dns cache is not nice, we consider it obsolete starting now
2004-03-01 15:50:15 +00:00
Daniel Stenberg
097938e6c8
Moved two 7.11.2 issues over to the more general TODO docs.
2004-03-01 09:08:52 +00:00
Daniel Stenberg
d57b84e290
minor spellfix
2004-03-01 08:54:22 +00:00
Daniel Stenberg
fcc07bed90
intend the top-level blurb to make it easier to discard it from the web
...
site output
2004-03-01 08:50:28 +00:00
Daniel Stenberg
43bda5cd17
Tor and David
2004-03-01 08:20:21 +00:00
Daniel Stenberg
45c7f064d4
mention how to make a curl handle use the share
2004-03-01 08:02:50 +00:00
Daniel Stenberg
4ae4336643
using roffit 0.6 we can get <a href> links with the --mandir option
2004-02-27 15:48:13 +00:00
Daniel Stenberg
25bcd45034
formatting update to produce better links with the new roffit version
2004-02-27 15:34:06 +00:00
Daniel Stenberg
f53d6e1c39
elaborate on the URL option
2004-02-27 14:07:22 +00:00
Daniel Stenberg
d0242da304
Added a few options that were still not documented. Now I believe all options
...
mentioned in the current curl/curl.h header file (that aren't marked as
obsolete) are present.
2004-02-27 09:02:06 +00:00
Daniel Stenberg
82c31256e1
better formatting of the share options
2004-02-25 12:34:19 +00:00
Daniel Stenberg
403cbbe0c4
mark the function name
2004-02-25 12:32:33 +00:00
Daniel Stenberg
9a7e3437ae
added CURLOPT_SHARE
2004-02-25 12:20:41 +00:00
Daniel Stenberg
0b1f7995c5
correct the input data structs
2004-02-23 09:01:08 +00:00
Daniel Stenberg
c7775c59bf
mention in --limit-rate that --speed-limit might ruin the limiting slightly.
2004-02-21 16:18:57 +00:00
Daniel Stenberg
afa5924487
very minor phrase edit
2004-02-19 10:21:54 +00:00
Daniel Stenberg
283f68f660
Dominick Meglio's update
2004-02-09 13:51:52 +00:00
Daniel Stenberg
220caed248
Dominick Meglio's added share interface documentation
2004-02-09 09:07:26 +00:00
Daniel Stenberg
7f679c3da3
Ken Rastatter's fixes to improve portability of this example:
...
These minor changes remove portability issues with the this example and allow
it to run on Win32. Specifically:
* The use of pthread_create() has been replaced by g_thread_create(). This
removes the dependency on the pthreads library. Since this is an example using
GTK+, g_thread_create() is available as it is a part of glibc.
* The CURLOPT_FILE option is now referred to by its "newer name"
CURLOPT_WRITEDATA.
* The use of CURLOPT_WRITEFUNCTION has been added. As described in the docs,
this avoids the crashes when using a DLL under Win32.
* The output file has been renamed from "/tmp/test.curl" to "test.curl". It's
unlikely that there is a /tmp when in Win32 and other examples in libcurl
write their output files to the working directory.
2004-02-09 07:12:33 +00:00
Daniel Stenberg
1a6969a887
Added documentation of a few command line options that were still undocumented
...
here.
2004-02-06 10:17:13 +00:00
Daniel Stenberg
773a8fe598
no one uses libcurl before 7.7 anyway...
2004-02-03 15:59:06 +00:00
Daniel Stenberg
3b0f52205d
mention mpe/ix
2004-02-02 15:34:09 +00:00
Daniel Stenberg
aaa42735e6
--socks
2004-01-30 08:54:00 +00:00
Daniel Stenberg
7052598e59
note about the need for extra functions set to OpenSSL if you use OpenSSL
...
multi-threaded
2004-01-29 16:17:25 +00:00
Daniel Stenberg
5a58d51993
the *_LARGE options work fine on windows in 7.11.1
2004-01-23 12:52:04 +00:00
Daniel Stenberg
eaddf3d198
mark the option better
2004-01-22 10:17:09 +00:00
Daniel Stenberg
863c7c7282
no large files on windows just yet
2004-01-22 09:15:37 +00:00
Daniel Stenberg
d204c62c39
clarified where VERBOSE output goes
2004-01-21 07:46:17 +00:00
Daniel Stenberg
84990cb176
Peter Sylvester's CURLOPT_SSL_CTX_FUNCTION docs
...
I reworded some of the intial paragraphs to avoid 'NOTE2'
2004-01-15 10:38:08 +00:00
Daniel Stenberg
d8dd9b0008
Brian R Duffy provide a "build SSL-enabled with Borland" section
2004-01-13 07:58:49 +00:00
Daniel Stenberg
93aea06ed9
http auth types
...
disable EPRT
removed passwd prompting text
2004-01-12 08:48:08 +00:00
Daniel Stenberg
7237221108
added a short intro text about this not being for binary package installs
2004-01-09 09:36:07 +00:00
Daniel Stenberg
4c3a2318ae
a fair idea
2004-01-09 08:59:55 +00:00
Daniel Stenberg
f4569f10f0
added a few people who have been doing lots of good stuff
2004-01-07 14:53:53 +00:00
Daniel Stenberg
23cfb9a832
feature update
2004-01-07 14:50:11 +00:00
Daniel Stenberg
feeef39ebf
mention that the _LARGE options are added in 7.11.0, added a header to the
...
file with the standard curl blurb
2004-01-07 07:20:08 +00:00
Daniel Stenberg
b60e0fa97e
David J Meyer's large file support.
2004-01-05 22:29:29 +00:00
Daniel Stenberg
41c6f68d94
minor wording change
2004-01-05 14:56:46 +00:00
Daniel Stenberg
411d0cb715
minor format flaw
2004-01-05 14:46:56 +00:00
Daniel Stenberg
a99e6445bf
there's a ferite binding too
2004-01-02 12:57:47 +00:00
Daniel Stenberg
f3e5d4a602
curl doesn't do recursive operations
2003-12-22 17:24:21 +00:00
Daniel Stenberg
61685fee7e
Andrs Garca added CURLOPT_IPRESOLVE
2003-12-22 10:53:55 +00:00
Daniel Stenberg
36a2fac79f
typecast the size to long for platforms where st_size is off_t
2003-12-18 18:05:10 +00:00
Daniel Stenberg
58cf108251
Andrs Garca's update
2003-12-18 13:33:14 +00:00
Daniel Stenberg
f4e987cd19
clarified the URL part based on the problems Martin Hilpert had
2003-12-18 07:52:31 +00:00
Daniel Stenberg
2450506c83
AmigaOS build notes
2003-12-16 14:51:58 +00:00
Daniel Stenberg
9825d81973
curl-config bug corrected
2003-12-10 14:13:01 +00:00
Daniel Stenberg
5a87203fe4
minor language fixes
2003-12-10 07:50:12 +00:00
Daniel Stenberg
90e9c64f72
Eric S. Raymond's fix of the NAME section
2003-12-10 07:16:20 +00:00
Daniel Stenberg
8742d39060
added some details from the old scrolls
2003-12-09 08:05:03 +00:00
Daniel Stenberg
821302bcf3
removed old version checks
2003-12-08 14:14:26 +00:00
Daniel Stenberg
f68219ddaa
use the newer option names
2003-12-08 14:13:19 +00:00
Daniel Stenberg
7e3cd82b50
updated 5.5 to use the modern names of these defines
2003-12-08 13:59:35 +00:00
Daniel Stenberg
bc372815a8
ares in curl-config
2003-12-08 13:51:07 +00:00
Daniel Stenberg
391a37ebbf
removed one, added one
2003-12-08 13:48:23 +00:00
Daniel Stenberg
bff59dac12
minor edit of the PRIVATE option
2003-12-04 13:01:30 +00:00
Daniel Stenberg
ea53aed841
cut out the wrong version blurb
2003-12-04 12:56:05 +00:00
Daniel Stenberg
e2555cf83d
edited the -d section slightly
2003-12-03 14:09:29 +00:00
Daniel Stenberg
f7c8a57206
minor edit
2003-12-03 14:02:37 +00:00
Daniel Stenberg
ad5ead8bed
--ftp-pasv now overrides a previous --ftpport option. We now also support
...
it named "--ftp-port" as the additional dash between the words is used in
several other options and this makes it more consistant.
2003-12-02 18:01:08 +00:00
Daniel Stenberg
cc48658564
cut off old crappy win32 comments and use the proper global_init instead
...
also removed very old "require libcurl older than blablabla"
2003-11-19 08:21:34 +00:00
Daniel Stenberg
79e4aee185
cleaned up
2003-11-19 08:20:13 +00:00
Daniel Stenberg
4d28012468
remove the wrong win32 comment and use global_init
2003-11-19 08:19:20 +00:00
Daniel Stenberg
e42f806b3f
mention it was added in 7.10.9
2003-11-12 14:34:17 +00:00
Daniel Stenberg
0850aec780
a resume http upload bug
2003-11-12 14:33:58 +00:00
Daniel Stenberg
ad77f760cf
Added CURLOPT_NETRC_FILE.
2003-11-11 14:30:43 +00:00
Daniel Stenberg
3dd40cca9a
Removed references to the no-longer existing PASSWDFUNCTION. That option
...
existed in 7.10.7 and earlier, but has since been cut out.
2003-11-07 13:26:45 +00:00
Daniel Stenberg
c40309ae21
explain the requirements for --negotiate, --ntlm and --krb4
2003-11-07 13:23:08 +00:00
Daniel Stenberg
fe0b5801ec
mark options better
2003-11-07 09:15:28 +00:00
Daniel Stenberg
6294b356fb
mark all mentioned options better
2003-11-06 13:51:29 +00:00
Daniel Stenberg
3e64a76498
converted most .I lines to \fI ones
2003-11-06 13:34:28 +00:00
Daniel Stenberg
dec9907c16
egd, not edg
2003-11-06 13:31:42 +00:00
Daniel Stenberg
eee3f13134
removed the _last since that is by definition not an error code
2003-11-06 12:52:48 +00:00
Daniel Stenberg
7496e87d16
updated somewhat
2003-11-06 08:15:04 +00:00
Daniel Stenberg
67dcddbef7
minor format edits
2003-11-05 15:52:00 +00:00
Daniel Stenberg
7ffb8c6aee
use roffit to make HTML from man pages
...
http://daniel.haxx.se/projects/roffit/
2003-11-05 15:51:25 +00:00
Daniel Stenberg
344c378996
use .BR to refer to other man pages to make it easier for parsers to know
2003-11-04 13:30:27 +00:00
Daniel Stenberg
445f54db57
consistant with other man pages
2003-11-04 13:27:28 +00:00
Daniel Stenberg
9b7c311929
.TP and .B replaced with .IP
2003-11-04 13:03:45 +00:00
Daniel Stenberg
6a21a28048
.IP instead of .TP and .B
2003-11-04 12:59:10 +00:00
Daniel Stenberg
0adb75114b
highlight more mentioned options
2003-11-04 12:58:03 +00:00
Daniel Stenberg
ecfb53f06d
Use .IP instead of .TP and .B for each item.
2003-11-04 12:55:53 +00:00
Daniel Stenberg
c020ee2eb6
spell!
2003-11-04 12:07:19 +00:00
Daniel Stenberg
3e24c6a957
Debian bug report #218046 , a minor typo.
2003-10-31 18:43:12 +00:00
Daniel Stenberg
fb26b2bd98
curl --head now reports info "headers" on file:// URLs as well
2003-10-30 09:08:16 +00:00
Daniel Stenberg
5987791516
encourage use of -c to store cookies instead of -D
2003-10-22 14:37:24 +00:00
Daniel Stenberg
d7c09efeb1
no colons in user names with USERPWD
2003-10-21 06:06:32 +00:00
Daniel Stenberg
b3591ec464
Added a few undocumented errors
2003-10-18 11:53:42 +00:00
Daniel Stenberg
b1952e773a
nicer pdf generation
2003-10-17 13:31:39 +00:00
Daniel Stenberg
ce5db9a86e
Dominick Meglio implemented CURLOPT_MAXFILESIZE and --max-filesize.
2003-10-17 13:11:00 +00:00
Daniel Stenberg
d095b20d1c
cleaning
2003-10-17 12:37:15 +00:00
Daniel Stenberg
18b809e7e4
empty path parts in FTP URLs
2003-10-17 12:21:48 +00:00
Daniel Stenberg
3f458fc650
The 100-continue and no-more-response bug
2003-10-17 11:36:41 +00:00
Daniel Stenberg
cc09e31acf
turned this into a list of documents/standards curl adheres to
2003-10-16 15:04:06 +00:00
Daniel Stenberg
8f5b80c715
removed the passwd options that are no longer supported
2003-10-16 14:14:45 +00:00
Daniel Stenberg
5911485f38
use $(NROFF), not gnroff (patch by Domenico Andreoli)
2003-10-13 00:10:45 +00:00
Daniel Stenberg
b864e25011
CURLOPT_NOBODY means HEAD on HTTP servers
2003-10-04 14:01:41 +00:00
Daniel Stenberg
24836d30f5
Peter Sylvester's curlx.c code example added
2003-10-03 13:46:27 +00:00
Daniel Stenberg
588b63a05b
documented the new 7.10.8 -T functionality
2003-09-23 12:20:07 +00:00
Daniel Stenberg
a5c2a86649
-4 and -6 added
2003-09-23 11:53:08 +00:00
Daniel Stenberg
2d4c0af528
updated to match reality
2003-09-23 11:07:44 +00:00
Daniel Stenberg
09ccfcdcd4
Markus Moeller's SPNEGO patch applied, with my edits, additions and minor
...
cleanups.
2003-09-19 12:56:22 +00:00
Daniel Stenberg
bbc01c36d2
updated
2003-09-19 12:55:35 +00:00
Daniel Stenberg
6e16985156
Added more docs for DEBUGFUNCTION as suggsted by Mohun Biswas
2003-09-12 18:35:38 +00:00
Daniel Stenberg
359c0eac0d
Early Ehlinger's CURLOPT_FTP_RESPONSE_TIMEOUT option documented by himself.
2003-09-05 11:02:11 +00:00
Daniel Stenberg
818d231849
"Securing FTP with TLS" was updated to revision 12
2003-09-01 08:43:13 +00:00
Daniel Stenberg
eb9937ec1a
LDAP fixed in CVS (for upcoming 7.10.8)
2003-09-01 08:36:49 +00:00
Daniel Stenberg
a95df8246b
Henrik Storner's rewrite that includes a nice usage of curl_multi_info_read()
2003-08-28 11:21:14 +00:00
Daniel Stenberg
7fdd0bd367
we support any number of globs now, even for #[num] ones
2003-08-22 12:56:56 +00:00
Daniel Stenberg
bd78878cc3
CURLINFO_RESPONSE_CODE instead of CURLINFO_HTTP_CODE
2003-08-20 15:44:03 +00:00
Daniel Stenberg
c16dd085f1
minor edit
2003-08-18 15:27:26 +00:00
Daniel Stenberg
a7349a48ff
minor edits
2003-08-18 15:24:46 +00:00
Daniel Stenberg
6fc55467f4
removed lots of "added in [version]" where [version] is resonably old
2003-08-15 06:35:41 +00:00
Daniel Stenberg
09b5ddaea5
added one "added in blabla" and removed a few
2003-08-14 22:00:56 +00:00
Daniel Stenberg
c46da65263
nicer make target for the pdf conversion
2003-08-12 09:08:05 +00:00
Daniel Stenberg
b46745759b
don't treat index.html as the generated HTML pages
2003-08-12 08:58:46 +00:00
Daniel Stenberg
9687571a84
added the new man pages
2003-08-12 08:58:23 +00:00
Daniel Stenberg
c13236de25
corrected return type
2003-08-12 08:58:15 +00:00
Daniel Stenberg
8ffbb6acd4
added the new curl_share_* man pages, the libcurl-easy, the libcurl-share,
...
made the generated pdf and html files get removed on 'make clean'. Made
the pdf conversion remove the temporary .ps files.
2003-08-12 08:51:23 +00:00
Daniel Stenberg
a3e5d81765
separated the easy-specific stuff into a new libcurl-easy.3 man page and
...
made the libcurl.3 one a more generic overview
2003-08-12 08:46:02 +00:00
Daniel Stenberg
e2aecfe80f
added the asynchdns bit
2003-08-12 08:26:38 +00:00
Daniel Stenberg
cc9ac6ad14
mention curl_version_info
2003-08-11 23:07:38 +00:00
Daniel Stenberg
d3b81ea3f7
Vincent Sanders's massive update of this example code. One could argue
...
weather this is still an "example" or a whole new API layer! ;-)
2003-08-11 21:34:52 +00:00
Daniel Stenberg
3660f67534
edits
2003-08-11 16:17:51 +00:00
Daniel Stenberg
203cc4a5c3
two more known bugs
2003-08-11 15:15:25 +00:00
Daniel Stenberg
1679993e3b
CURLOPT_PROXYAUTH explained
2003-08-11 11:54:14 +00:00
Daniel Stenberg
3e122a765d
Christian Beutenmueller corrected the CURLOPT_FILE referer, as we nowadays
...
call it CURLOPT_WRITEDATA.
2003-08-11 11:29:33 +00:00
Daniel Stenberg
0f2d680f1f
added Dirk Manske
2003-08-11 07:30:24 +00:00
Daniel Stenberg
b7930b6ebd
removed the dashes
2003-08-11 07:28:42 +00:00
Daniel Stenberg
8fa43b469a
documenting the share interface
2003-08-11 07:25:02 +00:00
Daniel Stenberg
894e52f61a
removed the BUGS section
2003-08-11 07:24:21 +00:00
Daniel Stenberg
3c294691aa
remove the BUGS section
2003-08-11 07:23:49 +00:00
Daniel Stenberg
acbf932861
fix lines that start with "
2003-08-11 07:23:19 +00:00
Daniel Stenberg
d987676ef0
added CURLOPT_FTP_CREATE_MISSING_DIRS
2003-08-08 11:04:35 +00:00
Daniel Stenberg
b7cbcf7434
--ftp-create-dirs
2003-08-08 10:26:08 +00:00
Daniel Stenberg
6d36796135
corrected main meta data title
2003-08-08 07:07:15 +00:00
Daniel Stenberg
065c8d7a95
Domenico Andreoli fixed the section number in the main meta data
2003-08-06 21:23:42 +00:00
Daniel Stenberg
859877dcfc
auth problems
2003-08-05 12:32:02 +00:00
Daniel Stenberg
a358ac24f4
Joerg Mueller-Tolk fixed a minor mistake
2003-08-01 14:20:48 +00:00
Daniel Stenberg
9ea2087ede
David Byron's makefile fix to allow 7.10.6 to build fine using VC
2003-08-01 07:53:27 +00:00
Daniel Stenberg
339f84fe1f
ftp proxy support would be nice
2003-07-30 13:41:59 +00:00
Daniel Stenberg
93352e56d8
As noticed by Kevin Roth, we shall not speak of root dir when it isn't
...
necessarily the root...
2003-07-28 08:53:12 +00:00
Daniel Stenberg
0423fd9b55
SSLCERTS was moved into the docs/ directory
2003-07-23 11:39:05 +00:00
Daniel Stenberg
789ab20bf7
moved SSLCERTS into the docs/ directory
2003-07-23 11:38:19 +00:00
Daniel Stenberg
58b6b3df06
Dan Winship pointed out this flaw
2003-07-15 22:44:48 +00:00
Daniel Stenberg
73071dfd4f
mention the new flag bits we support
2003-06-26 11:41:24 +00:00
Daniel Stenberg
b7c14b3c27
mention that it copies the string you add
2003-06-26 11:41:08 +00:00
Daniel Stenberg
3130b44535
added lots, mostly the new auth-related option(s)
2003-06-26 11:40:44 +00:00
Daniel Stenberg
a2bd73334f
added lots of auth stuff and updated other things too
2003-06-26 11:40:04 +00:00
Daniel Stenberg
1a393f5625
mention COOKIES, removed added entries, corrected the FPL-SSL link/reference
2003-06-26 11:38:53 +00:00
Daniel Stenberg
d4951e837e
mention the other formats the docs come in
2003-06-26 11:37:13 +00:00
Daniel Stenberg
26f6365e93
adjusted to recent changes
2003-06-26 11:36:32 +00:00
Daniel Stenberg
3a552b1e63
we do support NTLM now...
2003-06-26 11:35:48 +00:00
Daniel Stenberg
4c80e103a0
clarify the CUSTOMREQUEST and HTTPHEADER options slightly
2003-06-10 13:06:38 +00:00
Daniel Stenberg
39ea557360
CURLOPT_HTTPAUTH docu
2003-06-10 12:58:40 +00:00
Daniel Stenberg
d7980c1a45
Daniel Kouril for the HTTP negotiate stuff
2003-06-10 12:25:01 +00:00
Daniel Stenberg
e56ae1426c
Daniel Kouril's patch that adds HTTP negotiation support to libcurl was
...
added.
2003-06-10 12:22:19 +00:00
Daniel Stenberg
45ca866a2d
LDAP problem added as mention in bug report #735752
2003-06-03 08:10:53 +00:00
Daniel Stenberg
2563731c4d
haven't updates this in a loooong time
2003-05-28 10:24:20 +00:00
Daniel Stenberg
fc872808c5
runs on DOS now
2003-05-27 07:37:34 +00:00
Daniel Stenberg
b75679778f
ftp ASCII transfers in general need fixing
2003-05-26 08:19:06 +00:00
Daniel Stenberg
23258648da
--digest added, --compressed rephrased
2003-05-23 08:06:31 +00:00
Daniel Stenberg
d5043133e6
Gisle Vanem made curl build with djgpp on DOS.
2003-05-21 08:08:48 +00:00
Daniel Stenberg
662c659220
missing semicolon, by Gisle Vanem
2003-05-20 12:44:55 +00:00
Daniel Stenberg
663c1898a3
known AIX ipv6 problems
2003-05-16 10:57:53 +00:00
Daniel Stenberg
1094e79749
documented CURLOPT_FTP_USE_EPRT
2003-05-14 09:03:51 +00:00
Daniel Stenberg
8f85933d7c
Dan F clarified the CURLOPT_ENCODING description after his changes to
...
allow "" to enable all support formats.
2003-05-12 12:47:35 +00:00
Daniel Stenberg
246f3a63f6
Dan Fandrich added --compressed docu
2003-05-12 12:46:45 +00:00
Daniel Stenberg
073ef0b36a
clarify on the curl name issue and that there may be other libcurl-based
...
tools that provide GUI
2003-05-09 07:07:13 +00:00
Daniel Stenberg
b4fa2ff995
two more platforms Rich Gray built curl on
2003-04-30 07:32:43 +00:00
Daniel Stenberg
63593f5597
mention configure --help
2003-04-29 16:55:17 +00:00
Daniel Stenberg
c0acaa5d2c
CURLOPT_FTPPORT could support port number too
2003-04-28 17:29:32 +00:00
Daniel Stenberg
d77cc13374
two dashes is enough
2003-04-16 12:46:20 +00:00
Daniel Stenberg
183a9c6244
extended the -F section
2003-04-15 09:58:27 +00:00
Daniel Stenberg
f9781afafd
clarified the CURLINFO_SIZE_DOWNLOAD somewhat on Juan F. Codagnone's
...
suggestion
2003-04-11 16:52:30 +00:00
Daniel Stenberg
ee46efb5a5
these guys deserve a mentioning here as well
2003-04-11 08:57:19 +00:00
Daniel Stenberg
eb6ffebfc7
Dan the man on the list
2003-04-11 08:55:08 +00:00
Daniel Stenberg
c06c44f286
Dan Fandrich's added gzip support documented.
2003-04-11 08:51:24 +00:00
Daniel Stenberg
0b0a88b78d
when saving a cookie jar fails, you don't get an error code or anything,
...
just a warning in the verbose output stream
2003-04-11 08:19:06 +00:00
Daniel Stenberg
acec588fe3
--disable-eprt perhaps?
2003-04-07 06:41:24 +00:00
Daniel Stenberg
25f611ca42
Guillaume Cottenceau's patch that adds CURLOPT_UNRESTRICTED_AUTH that
...
disables the host name check in the FOLLOWLOCATION code. With that option
set, libcurl will send user+password to all hosts.
2003-03-31 04:41:05 +00:00
Daniel Stenberg
9a075f53dc
clarify USERPWD somewhat more
2003-03-31 04:04:40 +00:00
Daniel Stenberg
18b9b04907
send as much as possible of the POST at once
2003-03-28 12:56:07 +00:00
Daniel Stenberg
5111ce782f
add URLs to patch and diff
2003-03-26 11:48:03 +00:00
Daniel Stenberg
20b0e563ce
mention the URL to the mailing lists
2003-03-26 11:44:04 +00:00
Daniel Stenberg
cee0e94294
clarify that 22 can be returned on --fail for all HTTP errors being 400
...
or above
2003-03-18 10:01:51 +00:00
Daniel Stenberg
5334a58f9b
Andy Cedilnik's corrections
2003-03-17 12:38:08 +00:00
Daniel Stenberg
96b7131844
detect lack of perl before running tests
2003-03-15 15:08:55 +00:00
Daniel Stenberg
34c4ba4321
-m on curl on windows with telnet doesn't work
2003-03-12 14:14:52 +00:00
Daniel Stenberg
83a463891d
added things to fix at the next major release/change
2003-03-10 20:46:54 +00:00
Daniel Stenberg
957b618fdc
clarify
2003-03-10 20:43:59 +00:00
Daniel Stenberg
ebe5191b63
no the data is not freed, this is left for the app to do when needed
2003-03-10 17:01:11 +00:00
Daniel Stenberg
f216059b49
James Bursa wrote a section about cross-compiling for RISC OS
2003-02-28 13:10:54 +00:00
Daniel Stenberg
bc1102922b
spell out that POSTFIELDS should be url-encoded in most cases
2003-02-28 07:53:31 +00:00
Daniel Stenberg
248eb47329
Updated to better reflect reality. Also displays how the CURLMsg struct
...
looks like.
2003-02-27 14:25:54 +00:00
Daniel Stenberg
b995af17eb
added index.html
2003-02-26 13:46:38 +00:00
Daniel Stenberg
6589579850
random updates
2003-02-26 13:01:29 +00:00
Daniel Stenberg
db5c9cd4c0
updated, now features less mentions about older versions
2003-02-25 08:52:32 +00:00
Daniel Stenberg
9b6d010aef
better sslcerts link
2003-02-25 08:36:29 +00:00
Daniel Stenberg
065b87e949
7.10.4-pre2 commit
2003-02-24 18:14:48 +00:00
Daniel Stenberg
9d02a39e13
fixed language for limit-rate
2003-02-24 13:28:32 +00:00
Daniel Stenberg
fc0af0d4d1
daily was weekly, added a little thing about feb 2003
2003-02-24 08:18:17 +00:00
Daniel Stenberg
a683416081
added an EXAMPLE section
2003-02-21 15:19:50 +00:00
Daniel Stenberg
9faf57ee8d
how to disable FTP PORT
2003-02-17 23:23:11 +00:00
Daniel Stenberg
de003d9cf8
mention --trace and --trace-ascii in the -v/--versbose section to remind
...
people how to get even more details shown
2003-02-17 09:02:51 +00:00
Daniel Stenberg
8a2a523c70
mention more cacert magic
2003-02-14 22:28:12 +00:00
Daniel Stenberg
9659d862c7
Matthew Clarke built curl on AIX 3.2.5
2003-02-14 09:06:07 +00:00
Daniel Stenberg
140606ccd5
I made curl run fine on a XScale/PXA250
2003-02-05 08:09:33 +00:00
Daniel Stenberg
21c16f923c
Julian Noble pointed out that capath is indeed working fine on Windows
...
these days since the c_rehash tool is written (fixed) to do the proper
action even on file systems that don't support symlinks.
2003-02-03 21:36:52 +00:00
Daniel Stenberg
fc7bebdf55
the README.curl is named MANUAL these days
2003-01-28 16:33:05 +00:00
Daniel Stenberg
173b35eaf8
made it work
...
made it cause less compiler warnings
made it require 7.9.7 to build
2003-01-27 10:25:20 +00:00
Daniel Stenberg
154a59f21f
Five more names we owe a big THANKS for their donations to the project.
2003-01-20 14:49:57 +00:00
Daniel Stenberg
30377baa5e
steps I *MUST* perform when I release a package
2003-01-20 11:29:40 +00:00
Daniel Stenberg
285a8fe4d0
there is SOCKS support these days
2003-01-13 06:35:31 +00:00
Daniel Stenberg
2ede47b8c8
Wai (Simon) Liu provided the HTTP200ALIASES paragraph.
2003-01-09 15:04:55 +00:00
Daniel Stenberg
76e107506f
Philippe Raoult's added note for HTTPHEADER
2003-01-09 14:58:54 +00:00
Daniel Stenberg
cc09e9d4c2
fix
2003-01-09 11:43:08 +00:00
Daniel Stenberg
16e0da2c4b
call curl_multi_perform() correctly
2003-01-09 11:42:07 +00:00
Daniel Stenberg
aa5af100b4
clarified error code 19
2003-01-07 15:39:38 +00:00
Daniel Stenberg
eb6a14fe10
updated
2003-01-07 07:54:14 +00:00
Daniel Stenberg
5a2ab686a6
Marc Herbert's suggstion: mention that insecure is ignored if cacert or capath
...
is used.
2002-12-29 16:23:52 +00:00
Daniel Stenberg
04c499a5fc
CURLOPT_DNS_USE_GLOBAL_CACHE is not thread-safe
2002-12-19 15:22:36 +00:00
Daniel Stenberg
efbe930a69
CURLE_HTTP_NOT_FOUND => CURLE_HTTP_RETURNED_ERROR
2002-12-18 16:51:02 +00:00
Daniel Stenberg
81f45ba92a
writefunction data is not zero terminated
2002-12-16 17:33:21 +00:00
Daniel Stenberg
c65e088caf
Added a default headers section and also made some minor details more
...
up-to-date with recent changes.
2002-12-09 14:39:01 +00:00
Daniel Stenberg
b097c2cfb0
clarified
2002-12-03 12:40:12 +00:00
Daniel Stenberg
a39cdc80b7
Jeff pointed out this flaw in the example
2002-12-03 12:34:43 +00:00
Daniel Stenberg
a47250810e
-@ is no longer an official shortcut for --create-dirs
2002-12-03 11:13:12 +00:00
Daniel Stenberg
75145dd753
clarify the DEBUGFUNCTION data not being zero terminated
2002-12-03 10:37:20 +00:00
Daniel Stenberg
7a74303f3c
Nicolas Berloquin's description of his -@/--create-dirs fix
2002-12-02 14:40:54 +00:00
Daniel Stenberg
3f8ba3a986
clarified SSL_VERIFYPEER and SSL_VERIFYHOST a bit, thanks to Soren Spies
2002-12-02 06:47:16 +00:00
Daniel Stenberg
4a555de1b2
wrapped the line for PRIVATE nicer
2002-12-01 11:23:06 +00:00
Daniel Stenberg
13a903de28
mention CVS-INFO for more info when checked out from CVS
...
removed old section about problems with old autoconfs, I don't think that
happens anymore
2002-11-30 16:00:10 +00:00
Daniel Stenberg
ceb5648eb7
mention how to generate patches
2002-11-28 14:07:14 +00:00
Daniel Stenberg
9e1123debe
don't use curl.haxx.se
2002-11-22 07:39:15 +00:00
Daniel Stenberg
1607711603
4.12 Why do I get "certificate verify failed" ?
2002-11-20 19:17:43 +00:00
Daniel Stenberg
8bca5e05b8
Kjetil Jacobsen's patch that introduces CURLOPT_PRIVATE and CURLINFO_PRIVATE
...
for storage and retrieval of private data in the curl handle.
2002-11-20 19:11:22 +00:00
Daniel Stenberg
3836a70f97
removed nroff mistake
2002-11-15 14:13:46 +00:00
Daniel Stenberg
75194373e0
language
2002-11-14 09:55:00 +00:00
Daniel Stenberg
f3875048f6
clarified that strings need to be kept around until the handle is closed or
...
until the pointers are set to another value
2002-11-14 09:54:10 +00:00
Daniel Stenberg
522b85ae21
4.11 Why does my HTTP range requests return the full document?
2002-11-12 20:00:02 +00:00
Daniel Stenberg
7be9b4c418
transfer-encoding: chunked was implemented
2002-11-11 10:00:48 +00:00
Daniel Stenberg
7a8594da43
language fix
2002-11-06 08:29:26 +00:00
Daniel Stenberg
d442088ed3
kromJx@crosswinds.net fixed typos
2002-10-28 20:58:28 +00:00
Daniel Stenberg
d6654bfe00
mucho fixed
2002-10-16 09:53:38 +00:00
Daniel Stenberg
86a86d7afd
Andrs Garca's corrections
2002-10-15 08:39:30 +00:00
Daniel Stenberg
b6dac2b484
ignore .ps and .pdf files too
2002-10-14 07:47:40 +00:00
Daniel Stenberg
e6367abae9
generate and include PDF versions of the docs in the release archive
2002-10-14 07:39:49 +00:00
Daniel Stenberg
94bae20776
some more
2002-10-13 10:28:38 +00:00
Daniel Stenberg
bb8c8d273c
added more info
2002-10-13 10:18:10 +00:00
Daniel Stenberg
da86e32eb4
-y and -Y was switched in the examples
2002-10-12 12:14:09 +00:00
Daniel Stenberg
017ec204a9
set version and date
2002-10-08 13:30:34 +00:00
Daniel Stenberg
8dbfecd153
added --ca
2002-10-08 13:30:15 +00:00
Daniel Stenberg
db2fea448c
7.10 not 7.9.9 (there never was one named that)
2002-10-08 09:24:21 +00:00
Daniel Stenberg
dd82d69b8c
5.7 Link errors when building libcurl on Windows!
2002-10-08 07:16:17 +00:00
Daniel Stenberg
27328281b7
more blurb
2002-10-08 07:11:34 +00:00
Daniel Stenberg
84800914f6
added libcurl-the-guide to the dist
2002-10-07 18:23:52 +00:00
Daniel Stenberg
8aa41dd04b
Bjorn Wiren pointed out that INSTALL was missing in the tarballs
2002-10-03 12:50:48 +00:00
Daniel Stenberg
dc9e415602
get an argument and add a 'age' field to the struct
2002-09-30 19:51:05 +00:00
Daniel Stenberg
296b35fe9b
"" proxy means no proxy
2002-09-27 09:51:42 +00:00
Daniel Stenberg
3b33540c99
point out more docs
2002-09-26 13:16:08 +00:00
Daniel Stenberg
29d0174253
nicer html
2002-09-26 13:12:48 +00:00
Daniel Stenberg
cc7f2a0d08
main index for the tool docs
2002-09-26 13:05:54 +00:00
Daniel Stenberg
b1579aed2f
fixed html tag
2002-09-26 13:03:55 +00:00
Daniel Stenberg
9247daf953
enhanced curl_version_info
2002-09-26 13:03:22 +00:00
Daniel Stenberg
3fc2c813cc
added curl_free and an "overview" section
2002-09-25 12:24:46 +00:00
Daniel Stenberg
9de4b99fc7
added curl_free
2002-09-25 12:21:08 +00:00
Daniel Stenberg
24e7036822
Walter J. Mack's curl_free addition
2002-09-25 12:11:12 +00:00
Daniel Stenberg
342fce97af
Re-ordered all the options to be more logically structured. Hopefully this
...
will make this page more readable and easy to find things in!
2002-09-18 15:26:42 +00:00
Daniel Stenberg
22cf05519a
clarified what CURLOPT_MAXCONNECTS actually do
2002-09-13 12:37:14 +00:00
Daniel Stenberg
3b825bcbfb
ignore html files here
2002-09-11 10:20:46 +00:00
Daniel Stenberg
31959fb24b
added more recent return codes
2002-09-11 08:49:55 +00:00
Daniel Stenberg
5e9675ad1e
filled in the -k text too
2002-09-11 08:47:30 +00:00
Daniel Stenberg
084b7675b2
added -k for 7.10, added some more details on -y based on comments from
...
Kingsley Morse
2002-09-11 08:43:31 +00:00
Daniel Stenberg
ed8be5bc55
we are MIT-only
2002-09-09 11:23:57 +00:00
Daniel Stenberg
9a3ff5c46a
configure --disable-http is not properly working
2002-09-09 07:07:13 +00:00
Daniel Stenberg
1c96128695
we're now MIT licensed only
2002-09-03 11:58:18 +00:00
Daniel Stenberg
64bbe9dfaf
James Gallagher's Content-Encoding work
2002-09-02 22:31:18 +00:00
Daniel Stenberg
1822dd0549
Jon Topper pointed out a code example bug
2002-09-02 08:38:30 +00:00
Daniel Stenberg
daf55705e4
more explicit texts on the 4.2 answer
2002-08-29 07:05:31 +00:00
Daniel Stenberg
87c43517cd
add more things to do
2002-08-26 22:32:46 +00:00
Daniel Stenberg
2a0bc64226
Markus F.X.J. Oberhumer's added notes about NOSIGNAL in the TIMEOUT
...
descriptions, slightly edited by me.
2002-08-22 19:45:22 +00:00
Daniel Stenberg
6b975c308c
Markus F.X.J. Oberhumer added a section about NOSIGNAL and libcurl in
...
multi-threaded use
2002-08-22 19:39:19 +00:00
Daniel Stenberg
f636c12255
bug report #588027 converted to a KNOWN BUG, as we have no intention to
...
correct this problem within the nearest period
2002-08-22 19:03:54 +00:00
Daniel Stenberg
6d7785a35b
NOSIGNAL, BUFFERSIZE and clarification for the PROGRESSFUNCTION
2002-08-21 19:04:08 +00:00
Daniel Stenberg
c8ee1fa62e
modified again to look better HTML converted
2002-08-15 08:06:36 +00:00
Daniel Stenberg
5c1a6ed719
Leonce Limousin pointed out flaws
2002-08-15 06:13:54 +00:00
Daniel Stenberg
9d68fde148
Wez Furlong's ideas and some cleaning up/clarifying
2002-08-14 23:35:19 +00:00
Daniel Stenberg
c7d517f6d2
re-order the compiler arguments to keep more compiler happy
2002-08-14 23:01:14 +00:00
Daniel Stenberg
d0e0bf53a6
change the resolver URL to the work-in-progress library project
2002-08-13 06:51:50 +00:00
Daniel Stenberg
c74cb59e08
added comment about CURLOPT_WRITEDATA for directing contents somewhere
2002-08-12 11:36:48 +00:00
Daniel Stenberg
7aeb63c817
ignore html too
2002-08-12 08:54:49 +00:00
Daniel Stenberg
b5dd257427
makes things better
2002-08-08 23:05:50 +00:00
Daniel Stenberg
d16c757c28
mainly more not-so-very serious blurb about the name
2002-08-08 11:54:11 +00:00
Daniel Stenberg
be24652d4d
Adding more blurb about activating the cookies on COOKIEFILE and COOKIEJAR
2002-08-07 08:23:40 +00:00
Daniel Stenberg
6ab44d9439
spell out that -i should be used if you want to add http headers to the
...
output. -v does not do that
2002-08-07 08:09:14 +00:00
Daniel Stenberg
33306b2749
jonatan's fixes
2002-08-05 09:38:31 +00:00
Daniel Stenberg
890bf3bd27
spell fix and --limit-rate added
2002-07-31 08:24:58 +00:00
Daniel Stenberg
f79f5cbf82
Setting PASSWDFUNCTION to NULL will set back the internal function as password
...
function.
2002-07-29 22:42:11 +00:00
Daniel Stenberg
eb164098b7
added HISTORY
...
for newbies ;-)
2002-06-25 09:21:45 +00:00
Daniel Stenberg
62527fa98a
corrected to match reality better
2002-06-24 06:14:56 +00:00
Daniel Stenberg
b9f8e80b14
removed the php/examples reference as that dir is not in the archives
2002-06-19 12:37:02 +00:00
Daniel Stenberg
b79e250ed2
simplified the compile line even more
2002-06-19 12:31:49 +00:00
Daniel Stenberg
fc5c9d8f17
simplepost.c shows a simple POST ;-)
2002-06-19 12:30:12 +00:00
Daniel Stenberg
5cb06d8fd6
Chris Combes added description of his newly added options
2002-06-15 11:17:42 +00:00
Daniel Stenberg
414afe0935
Miklos Nemeth added a section for how to disable specific protocols in the
...
windows build.
2002-06-13 22:13:46 +00:00
Daniel Stenberg
943e31b35c
CURLOPT_MAXFILESIZE
2002-06-12 08:16:59 +00:00
Daniel Stenberg
e3031fddb9
Add QNX
2002-06-12 07:26:13 +00:00
Daniel Stenberg
dbbd871ea1
the disable protocol stuff is now added
2002-06-11 15:24:47 +00:00
Daniel Stenberg
0cbb9365c6
indent like the other ones
2002-06-03 13:37:09 +00:00
Daniel Stenberg
798b8c522b
Christophe Espern wrote another binding!
2002-06-03 13:20:23 +00:00
Daniel Stenberg
15bc7e19f9
updated header
2002-06-03 13:04:35 +00:00
Daniel Stenberg
59c11b82d5
Cris Bailiff's CAPATH support added
2002-05-28 09:21:29 +00:00
Daniel Stenberg
98871d1e9e
new url, spell checked
2002-05-22 22:14:03 +00:00
Daniel Stenberg
51fcee6f81
James Cone added CURLOPT_NETRC / --netrc / --netrc-optional descriptions
2002-05-21 22:20:16 +00:00
Daniel Stenberg
2080738883
corrected see also
2002-05-21 14:00:55 +00:00
Daniel Stenberg
48bc73c271
3.14 added, javascript support
2002-05-21 13:53:32 +00:00
Daniel Stenberg
c3c392fc98
return type CURLFORMcode instead of plain int
2002-05-21 07:47:09 +00:00
Daniel Stenberg
bc74375543
Added item 4.10 after talks with Russ Freeman
2002-05-15 21:40:29 +00:00
Daniel Stenberg
5215f6f654
we don't need win32sockets.c anymore, we support this internally
2002-05-13 07:29:22 +00:00
Daniel Stenberg
1913b4eeed
fopen.c added, a fopen() style emulation for URL reading
2002-05-13 07:28:10 +00:00
Daniel Stenberg
919878fbb2
AIX 5.1
2002-05-10 16:01:24 +00:00
Daniel Stenberg
20d9c1b30d
Patrick Smith's contributed docs improvements for when NLST is used by
...
curl...
2002-05-07 23:36:53 +00:00
Daniel Stenberg
1458c3668d
--trace-ascii and --junk-session-cookies were added
2002-05-07 13:12:12 +00:00
Daniel Stenberg
8539e76cb9
CURLOPT_FILE and CURLOPT_INFILE have better aliases now:
...
CURLOPT_WRITEDATA and CURLOPT_READDATA
2002-05-06 13:43:35 +00:00
Daniel Stenberg
3bbf694d5a
Added multi-post.c, based on the source file posted by Gustaf Hui
2002-05-06 13:38:28 +00:00
Daniel Stenberg
c6cf2b8e93
--trace is a 7.9.7 function
2002-05-05 09:09:17 +00:00
Daniel Stenberg
69c5452b25
added -Z/--max-redirs and --trace
...
changed order of a few others to keep the a-z order
2002-05-05 09:08:26 +00:00
Daniel Stenberg
d9a1a59f22
CURL_MAX_WRITE_SIZE is a new exported define that informs about the biggest
...
sized buffer that may be passed to a write callback
2002-05-03 14:50:29 +00:00
Daniel Stenberg
9ef9797998
clarified that you must keep the variables that you point to!
2002-05-02 22:34:31 +00:00
Daniel Stenberg
ab9374de57
spell
2002-05-02 22:15:21 +00:00
Daniel Stenberg
bd9650bc81
how to set more than one cookie
2002-04-30 07:37:02 +00:00
Daniel Stenberg
abea1f8910
clarified
2002-04-27 18:31:49 +00:00
Daniel Stenberg
8eaa7fec76
one added, one edited
2002-04-27 18:12:26 +00:00
Daniel Stenberg
fdace647e8
shorter introduction
2002-04-27 18:01:54 +00:00
Daniel Stenberg
d7531c18fc
updated
2002-04-27 18:00:10 +00:00
Daniel Stenberg
ef3f978784
Added BINDINGS, lists all available libcurl bindings as of this date.
2002-04-27 17:02:38 +00:00
Daniel Stenberg
32823f17e0
openbsd on Alpha was no problemos
2002-04-26 12:58:07 +00:00
Daniel Stenberg
f6525ae200
the TOTAL_TIME is not really total, as it excludes the connect time...
2002-04-25 16:45:15 +00:00
Daniel Stenberg
47819ea86e
clarified a bit with the timecondition stuff
2002-04-24 10:16:46 +00:00
Daniel Stenberg
96ce3461ad
no, this doesn't look like it bugs
2002-04-24 10:16:00 +00:00
Daniel Stenberg
8b6d555421
NetBSD alpha works, also tried a newer FreeBSD on alpha
2002-04-24 10:15:37 +00:00
Daniel Stenberg
2bc84fb163
Dirk Manske's two new infos
2002-04-17 07:21:17 +00:00
Daniel Stenberg
f339bf613c
cut off an old section
2002-04-12 14:41:24 +00:00
Daniel Stenberg
b00c59816d
http_proxy must be lower case
2002-04-12 14:33:57 +00:00
Daniel Stenberg
a00918116d
7.9.6-pre5
2002-04-12 11:39:27 +00:00
Daniel Stenberg
d26c318321
explain all mailing lists better
2002-04-12 10:33:40 +00:00
Daniel Stenberg
eb8770506f
added libcurl-errors
2002-04-12 10:10:36 +00:00
Daniel Stenberg
c3bfb355c5
error codes *ARE* documented now
2002-04-12 07:19:43 +00:00
Daniel Stenberg
09df9b90c3
corrected to new return codes
2002-04-10 18:08:50 +00:00
Daniel Stenberg
536ea60d73
error codes documented
2002-04-10 13:24:45 +00:00
Daniel Stenberg
bfc7f1e4ac
clarified how to write URLs in -K config files
2002-04-10 12:57:34 +00:00
Daniel Stenberg
14d1da3ae0
spell checked and removed talk about very old version numbers
2002-04-09 06:20:06 +00:00
Daniel Stenberg
136f728b49
Jacky Lam deserves a mention here
2002-04-08 13:31:06 +00:00
Daniel Stenberg
38ed8938d8
Added DNS cache control options
2002-04-02 13:29:05 +00:00
Daniel Stenberg
6f3e0051c3
adjusted windows section after a patch from Miklos Nemeth
2002-03-22 12:01:30 +00:00
Daniel Stenberg
eb0f727818
newcomer notice added
2002-03-20 10:11:50 +00:00
Daniel Stenberg
dc3d0289d6
old list is gone
2002-03-20 08:00:05 +00:00
Daniel Stenberg
bd830c6f4d
John Clayton's weird explorations in the wonders of the windows tcp/ip
...
stack ;-)
2002-03-19 15:56:13 +00:00
Daniel Stenberg
c560327f26
Added the three multi interface source code examples to the distrib
2002-03-19 14:01:34 +00:00
Daniel Stenberg
28939dd45c
fixed include and added header
2002-03-19 14:00:47 +00:00
Daniel Stenberg
286fb6f645
added the multi functions man pages
2002-03-19 10:19:56 +00:00
Daniel Stenberg
340caf5da3
multi interface overview and description
2002-03-19 10:16:12 +00:00
Daniel Stenberg
171c4fd49f
removed text that really belongs to very old libcurls that are no longer
...
being used widely
2002-03-19 09:41:06 +00:00
Daniel Stenberg
b8a0fb1dfe
point out that this describes the easy interface and also make a more
...
general statement about language bindings
2002-03-19 09:31:05 +00:00
Daniel Stenberg
e65993bccb
language
2002-03-19 09:08:57 +00:00
Daniel Stenberg
7ffb4660ec
added some text about PASV and PORT and stuff
2002-03-19 08:55:05 +00:00
Daniel Stenberg
61a84abe2a
WRITEFUNCTION correction
2002-03-18 08:53:21 +00:00
Daniel Stenberg
3d03100079
Andreas Damm added thanks to his getdate overhaul
2002-03-18 08:52:46 +00:00
Daniel Stenberg
5297a52bf0
gopher
2002-03-18 08:52:15 +00:00
Daniel Stenberg
88631276e8
updated
2002-03-18 07:40:00 +00:00
Daniel Stenberg
2c0d9ad64c
clarified that it is only the + letter that isn't converted on the right
...
side of a ? letter
2002-03-17 08:28:51 +00:00
Daniel Stenberg
94da04fcac
headers and security blurb added
2002-03-15 13:25:15 +00:00
Daniel Stenberg
d242214e18
new example for libcurl 7.9.6 or later
2002-03-14 14:53:00 +00:00
Daniel Stenberg
6417fa95cf
corrected the use of the progress function
2002-03-11 15:00:57 +00:00
Daniel Stenberg
61f6284a35
minor edit
2002-03-11 08:39:00 +00:00
Daniel Stenberg
6b1a1a62a3
3.13 Why does my single/double quotes fail?
2002-03-11 08:29:26 +00:00
Daniel Stenberg
c2d4fd876c
7.9.5 commit
2002-03-07 08:50:18 +00:00
Daniel Stenberg
58cad04bbb
added the "known bugs" file
2002-03-07 08:29:24 +00:00
Daniel Stenberg
f752098ba5
when removed, an easy handle can be curl_easy_perform()ed again
2002-03-06 15:01:45 +00:00
Daniel Stenberg
a4477b9e4b
Paul Nolan built it on pocket pc
2002-03-06 12:33:34 +00:00
Daniel Stenberg
d89dbe5bd6
we don't skip what looks like already escaped strings, that was fixed
...
ages ago
2002-03-06 07:44:49 +00:00
Daniel Stenberg
b0475dbdbc
read POST data using the read callback
2002-03-05 14:14:22 +00:00
Daniel Stenberg
cda16297d1
added text to the progress chapter
2002-03-05 09:01:58 +00:00
Daniel Stenberg
d6c9a72e15
explicitly mention easy handle
2002-03-04 13:10:15 +00:00
Daniel Stenberg
4d7b1512c1
mention 'easy handle' and not just handle, there will soon be other handles
...
to keep track of too
2002-03-04 13:06:46 +00:00
Daniel Stenberg
d06d6b5534
moved lots to the new subdir 'libcurl'
2002-03-04 10:27:37 +00:00
Daniel Stenberg
9fc62a8dd0
multi interface using examples
2002-03-04 10:15:44 +00:00
Daniel Stenberg
465ae39e86
moved to the new libcurl/ directory
2002-03-04 10:10:58 +00:00
Daniel Stenberg
01f04b9a41
ripped out from ../ and put in its own directory now
2002-03-04 10:09:48 +00:00
Daniel Stenberg
8fc5a0d19e
bug report #524427 pointed out a mistake in the example source
2002-03-01 17:22:40 +00:00
Daniel Stenberg
62b5926d58
initial and still basic curl multi interface documentation
2002-03-01 15:34:23 +00:00
Daniel Stenberg
4d1037f385
removed incorrect and unnecessary words
2002-03-01 13:38:56 +00:00
Daniel Stenberg
36e1363e3d
minor edit
2002-02-27 12:40:01 +00:00
Daniel Stenberg
b6c4185b27
more custom stuff, much about dealing with cookies
2002-02-25 15:25:34 +00:00
Daniel Stenberg
95e601e2b1
"Yet Another Geek" made %{content_type} work in the -w/--writeout option.
2002-02-25 07:40:49 +00:00
Daniel Stenberg
0ec370e6fb
auth on multiple hosts with follow-location
2002-02-18 23:17:57 +00:00
Daniel Stenberg
5c4b422b18
offer SSL verfication callback,
...
add 'headers=' in client formpost
2002-02-18 10:51:28 +00:00
Daniel Stenberg
89bad584c3
updated LDAP URL syntax references by Aron Roberts
2002-02-18 10:47:27 +00:00
Daniel Stenberg
5cffe055ad
added Cris Bailiff's CAdir option suggestion
2002-02-07 10:43:43 +00:00
Daniel Stenberg
fef78bd6f1
Miklos Nemeth improved the windows section
2002-02-06 16:01:10 +00:00
Daniel Stenberg
afa64ee31f
a few of the SSL options were added in 7.9.3 and it should be noted
...
accordingly
2002-02-06 09:49:34 +00:00
Daniel Stenberg
685b180ab6
7.9.4-pre2
2002-02-04 09:51:41 +00:00
Daniel Stenberg
9dab850874
Eric Melville fixed spell mistakes on a few places
2002-02-03 15:00:51 +00:00
Daniel Stenberg
cc2f1d4894
Added the recycle handles chapter
...
Added most of the Customizing Operations chapter
2002-01-31 14:41:01 +00:00
Daniel Stenberg
ec1736d488
corrected the docs for CURLINFO_FILETIME
2002-01-31 07:17:32 +00:00
Daniel Stenberg
4522579688
Giaslas Georgios provided docs for CURLINFO_CONTENT_TYPE
2002-01-31 07:10:41 +00:00
Daniel Stenberg
d20186a7b8
I have too many ideas of what to mention in this docs
2002-01-30 15:35:02 +00:00
Daniel Stenberg
8a3ec2c659
the interface is simply called the "C" one these days
2002-01-30 10:07:49 +00:00
Daniel Stenberg
14e9420d2c
extended the proxy chapter mucho
2002-01-30 10:04:40 +00:00
Daniel Stenberg
a2b19c9a63
postit.c is removed, it used the deprecated curl_formparse() and may
...
encourage people to use bad functions
2002-01-25 10:07:07 +00:00
Daniel Stenberg
95ceeb6e0b
more about passwords and started about proxies
2002-01-22 13:41:00 +00:00
Daniel Stenberg
c9c00d2a23
verify big files
2002-01-22 13:10:16 +00:00
Daniel Stenberg
1afe49864d
minor edit
2002-01-22 08:22:04 +00:00
Daniel Stenberg
6924bee3a0
added --cc description and an example
2002-01-21 14:57:07 +00:00
Daniel Stenberg
39d4552dab
pre4
2002-01-21 12:11:45 +00:00
Daniel Stenberg
a23c63738f
HTTP POST explained
2002-01-21 10:54:56 +00:00
Daniel Stenberg
3e31b619de
added more text in the 'passwords' section
2002-01-18 15:08:32 +00:00
Daniel Stenberg
01cfe670c5
updated to 2002 status ;-)
2002-01-18 12:48:36 +00:00
Daniel Stenberg
5deab7ad27
more text added
2002-01-17 14:24:25 +00:00
Daniel Stenberg
12cdfd282d
added a comment about this example only works with 7.9.3 and newer libs
2002-01-17 13:45:19 +00:00
Daniel Stenberg
01ecb1d7e7
filled-in text in the "Building" chapter and added a "libcurl with C++"
...
chapter
2002-01-17 00:27:56 +00:00
Daniel Stenberg
ea811fee52
added a somewhat cool single-line command that builds most example sources
...
on unix-like systems
2002-01-16 14:13:54 +00:00
Daniel Stenberg
7391fd8f6a
initial attempt to write a tutorial-like libcurl guide
2002-01-15 08:22:00 +00:00
Daniel Stenberg
e4866563de
Gtz Babin-Ebell updated with some new 7.9.3 features
2002-01-13 11:32:36 +00:00
Daniel Stenberg
47f45aa229
Gtz Babin-Ebell provided some documantation for the ENGINE stuff
2002-01-13 11:32:05 +00:00
Daniel Stenberg
affe334675
added http-post.c
2002-01-10 09:00:02 +00:00
Daniel Stenberg
ee7e184e26
slightly extended to mention that -v and -i are good options to use when
...
reporting bugs
2002-01-10 07:38:53 +00:00
Daniel Stenberg
bec0ebacf1
bad comment begone
2002-01-09 13:23:01 +00:00
Daniel Stenberg
5bd6d631c6
cut off argc and argv as well
2002-01-09 13:22:31 +00:00
Daniel Stenberg
fd1799f3bb
Cleaned up this example to make it even simpler.
2002-01-09 13:22:03 +00:00
Daniel Stenberg
d9a7c7de51
David Bentham's updated QNX notification
2002-01-08 23:27:42 +00:00
Daniel Stenberg
0b1197936c
I made the write callback create the file the first time it gets called so
...
that it won't create an empty file if the remote file doesn't exist
2002-01-08 13:05:44 +00:00
Daniel Stenberg
ea9a88a9b8
another example source added
2002-01-08 08:26:22 +00:00
Daniel Stenberg
aec7358ca4
7.9.3 pre-release commit
2002-01-08 08:25:44 +00:00
Daniel Stenberg
deb2911c0e
Added David Bentham's notes about QNX and FD_SETSIZE
2002-01-07 15:14:01 +00:00
Daniel Stenberg
f1c14fe0b4
The former -c is "-C -" these days
2002-01-04 13:15:07 +00:00
Daniel Stenberg
6aaee5f23b
minor changes
2002-01-03 09:43:17 +00:00
Daniel Stenberg
dfdf4916fa
rewrote 3.9 to be more generic with more languages:
...
"3.9 How do I use curl in my favourite programming language?"
2001-12-21 09:20:04 +00:00
Daniel Stenberg
97a8c98886
spell
2001-12-21 08:10:34 +00:00
Daniel Stenberg
d60029d66e
Added 4.5.6 "301 Moved Permanently", as a reply to bug report #495215
2001-12-19 23:25:04 +00:00
Daniel Stenberg
226fe8bdf9
Gtz Babin-Ebell's contributed "simplessl.c" example source code
2001-12-18 10:13:41 +00:00
Daniel Stenberg
af6c394785
Gtz Babin-Ebell's OpenSSL ENGINE patch
2001-12-17 23:01:39 +00:00
Daniel Stenberg
558d12d7f6
strip trailing CRs
2001-12-17 10:32:10 +00:00
Daniel Stenberg
bfa8a6da26
cut off the description to prevent people from using this!
2001-12-17 09:33:54 +00:00
Daniel Stenberg
aa6b3d22a2
Marcus Webster's added CURLFORM_CONTENTHEADER docs
2001-12-16 12:54:42 +00:00
Daniel Stenberg
2eb355733f
Marcus Webster's newly added CURLFORM_CONTENTHEADER
2001-12-14 12:59:16 +00:00
Daniel Stenberg
1c99c4ad11
HTTP_PROXY => http_proxy as Bjrn pointed out
2001-12-10 11:59:05 +00:00
Daniel Stenberg
bbcfc10677
corrected the READFUNCTION docs slightly
2001-12-10 07:46:43 +00:00
Daniel Stenberg
d12fd897cb
Jason Mancini's -Oalways suggestion
2001-12-06 14:40:16 +00:00
Daniel Stenberg
5e95203a5d
let us know if curl compiles on more platforms
2001-12-06 12:48:41 +00:00
Daniel Stenberg
cad4a571ce
curl compiles on HURD
2001-12-06 07:11:33 +00:00
Daniel Stenberg
c3ad019c99
the final ftp ipv6 support has been added!
2001-12-03 10:38:31 +00:00
Daniel Stenberg
05b84bfe91
updates
2001-12-03 10:07:49 +00:00
Daniel Stenberg
4ec0401529
modified the stack trace section slightly
2001-12-03 09:44:11 +00:00
Daniel Stenberg
946090b9cd
documented CURLOPT_HTTP_VERSION and CURLOPT_FTP_USE_EPSV
2001-11-30 13:40:23 +00:00
Daniel Stenberg
1f7f0fda71
added --disable-epsv
2001-11-30 13:30:02 +00:00
Daniel Stenberg
d3706814e9
support para makes more sense now
2001-11-27 13:37:29 +00:00
Daniel Stenberg
6513dcef68
language
2001-11-27 13:34:59 +00:00
Daniel Stenberg
81f22465ba
the list of contributors are in the THANKS file these days
2001-11-27 13:33:21 +00:00
Daniel Stenberg
ffefcab1bc
greep at mindspring.com provided an index.html file that links to all the
...
existing HTML documents. It makes it easier to browse all the docs with
your browser.
2001-11-27 06:53:39 +00:00
Daniel Stenberg
9fe920cd90
made the -C more correct and detailed
2001-11-26 09:57:02 +00:00
Daniel Stenberg
52dbc96c32
updated the list of machines
2001-11-22 13:03:11 +00:00
Daniel Stenberg
b342fbdcda
SM corrected wsock32 to ws2_32
2001-11-21 23:11:47 +00:00
Daniel Stenberg
ca0fd33d2d
Georg Horn's STARTTRANSFER_TIME patch
2001-11-20 15:00:50 +00:00
Daniel Stenberg
271f96f78f
-p, not -P, for proxy tunneling
2001-11-20 08:03:01 +00:00
Daniel Stenberg
25fe47f262
spell, slightly modified "what you can do" crap
2001-11-14 20:13:38 +00:00
Daniel Stenberg
fe8365d214
added Richard Prescott's email
2001-11-14 13:43:15 +00:00
Daniel Stenberg
2519a8cc9f
added Richard Levitte's suggestion to support multiple -T options
2001-11-14 09:32:30 +00:00
Daniel Stenberg
60f19269d0
interface to export/import SSL session IDs
2001-11-13 09:56:29 +00:00
Daniel Stenberg
3e049a90b7
2 removed, 1 added
2001-11-13 09:06:32 +00:00
Daniel Stenberg
c5d97df7f1
disable QUOTEs with NULL
2001-11-13 09:05:10 +00:00
Daniel Stenberg
fc07eb45f4
point out that calling this function more than once is a sever error
2001-11-13 07:20:37 +00:00
Daniel Stenberg
3b976ea9f1
Added two missing return codes...
2001-11-08 12:36:00 +00:00
Daniel Stenberg
818a632e80
Added VERSIONS that explains about the (lib)curl version numbers
2001-11-07 08:26:51 +00:00
Daniel Stenberg
d89c495782
added john lask
2001-11-05 11:57:36 +00:00
Daniel Stenberg
2297a7a70c
more accurate
2001-11-02 13:16:29 +00:00
Daniel Stenberg
e60e7414b9
re-ordered, cleaned up
2001-11-02 12:51:18 +00:00
Daniel Stenberg
6d213e207d
libcurl can init winsock since 7.8.1
2001-11-01 14:51:02 +00:00
Daniel Stenberg
7d24ce9651
less I, more we
2001-11-01 09:12:35 +00:00
Daniel Stenberg
ae4f8243a9
added some -c talk, spell checked
2001-10-31 13:42:38 +00:00
Daniel Stenberg
64543e09ec
Added -0/--http1.0
2001-10-30 15:39:11 +00:00
Daniel Stenberg
c046dc904c
Corrected the -T description
2001-10-30 08:09:57 +00:00
Daniel Stenberg
bc8375a1e8
removed silly old -t usage from here, added some blurb about the "new" -t
...
that sets telnet options
2001-10-30 08:09:08 +00:00
Daniel Stenberg
3f248dd163
corrected return code, general cleanup
2001-10-29 13:41:16 +00:00
Daniel Stenberg
bca0c8d253
added "s390 Linux" as a platform that curl was compiled for, and I also sorted
...
the list of machines
2001-10-24 14:16:57 +00:00
Daniel Stenberg
53ac8004e7
added a section about cross compiling that Jim Duey wrote down for us
2001-10-24 11:54:42 +00:00
Daniel Stenberg
50e9f8ffd3
grammar grammar!
2001-10-23 10:12:28 +00:00
Daniel Stenberg
7d3daa598f
added "3.12 Why do FTP specific features over HTTP proxy fails?"
2001-10-23 10:12:00 +00:00
Daniel Stenberg
5193894603
rephrased the WRITEFUNCTION description a bit
2001-10-22 06:35:19 +00:00
Daniel Stenberg
2f85f3b147
cleanup on language, content and facts
2001-10-11 09:07:46 +00:00
Daniel Stenberg
6bc85a94f9
removed WRITEINFO from here, it's not been supported since 7.4...
2001-10-11 06:24:27 +00:00
Daniel Stenberg
65b9c0d44d
CURLOPT_WRITEFUNCTION description corrected
2001-10-10 13:11:24 +00:00
Daniel Stenberg
d8fb2b2e63
using a HTTP proxy will disable some protocol-specific features that non-
...
HTTP procotols may allow
2001-10-05 07:30:07 +00:00
Daniel Stenberg
3c92d45386
Bjrn Stenberg reported successfully having built curl on StrongARM Linux
2001-10-03 15:08:36 +00:00
Daniel Stenberg
fcf4fccfa4
non-blocking connects *done*
2001-10-03 11:58:12 +00:00
Daniel Stenberg
efc15fb128
The ARRAY stuff is now added
2001-10-03 08:02:17 +00:00
Daniel Stenberg
d5001a3f0b
Added httpput.c
2001-09-25 05:55:56 +00:00
Daniel Stenberg
5becdc38b3
http put with --crlf requires chunked content encoding
2001-09-19 14:49:23 +00:00
Daniel Stenberg
f8e102c485
curl_easy_duphandle is new
2001-09-17 22:24:35 +00:00
Daniel Stenberg
051fad8d88
now can set list of ciphers
2001-09-11 22:35:23 +00:00
Daniel Stenberg
c4532b9a07
added --ciphers
2001-09-11 22:34:54 +00:00
Daniel Stenberg
0e7824d1a9
documented CURLOPT_SSL_CIPHER_LIST
2001-09-11 22:29:30 +00:00
Daniel Stenberg
9b3b050640
some unixes have the netrc description in the ftp(1) man page
2001-09-11 06:39:54 +00:00
Daniel Stenberg
1d7075e339
added -R description
2001-09-05 13:26:54 +00:00
Daniel Stenberg
0fa61eff77
-R removes a TODO
2001-09-03 12:32:44 +00:00
Daniel Stenberg
315954c175
updated a bit
2001-08-29 15:02:46 +00:00
Daniel Stenberg
27ce46a85d
removed cookies and SSL sessions
2001-08-29 12:14:18 +00:00
Daniel Stenberg
a9b139b25c
added CURLOPT_COOKIEJAR details
2001-08-29 09:47:33 +00:00
Daniel Stenberg
bbdd5adf6e
'-c -'
2001-08-29 09:45:44 +00:00
Daniel Stenberg
d425f5389d
-c/--cookie-jar documented
2001-08-29 09:44:35 +00:00
Daniel Stenberg
b6526af442
added ftpupload.c
2001-08-29 07:12:04 +00:00
Daniel Stenberg
0452fd8657
Georg Huettenegger's updates
2001-08-28 08:55:26 +00:00
Daniel Stenberg
613eafaf02
automake 1.5 complained on my SUFFIXES line!
2001-08-28 08:55:12 +00:00
Daniel Stenberg
d73d28a75b
added FTPS to the list of supported protocols
2001-08-23 11:12:07 +00:00
Daniel Stenberg
13bf964b78
item 4.6 is now an indication of a crash, not a timeout
2001-08-23 11:11:13 +00:00
Daniel Stenberg
56e8d073bf
curl_formadd() using example, the 7.9 style of building rfc1867 form posts
2001-08-23 08:45:20 +00:00
Daniel Stenberg
c5a4b52d83
libcurl.3 has the info now
2001-08-22 11:23:53 +00:00
Daniel Stenberg
fc2d24105c
CURLOPT_POST isn't needed these days
2001-08-22 11:23:07 +00:00
Daniel Stenberg
6704d44dd4
updated
2001-08-22 11:22:43 +00:00
Daniel Stenberg
08655d8d5d
Georg Huettenegger's patch curl-7.8.1-pre5-patch-20010819
2001-08-21 13:18:07 +00:00
Daniel Stenberg
4c2fb64e21
added a 'html' target that builds HTML versions from the man page sources.
...
It requires 'gnroff' and 'man2html' for now. 'make html' will be invoked by
the 'maketgz' script and the HTML files are included in release archives.
2001-08-21 09:16:09 +00:00
Daniel Stenberg
d4b23198fa
this is replaced with libcurl.3
2001-08-21 06:56:13 +00:00
Daniel Stenberg
3a588fc9e7
added "4.5 FIGURE OUT WHAT A POST LOOKS LIKE"
...
added an online URL to this document
corrected a bad use of -t
2001-08-20 13:22:37 +00:00
Daniel Stenberg
732d80a770
updated version in header as we have 7.8.1 details in here
2001-08-20 07:36:57 +00:00
Daniel Stenberg
c36fc521bd
Added -G
2001-08-16 13:40:22 +00:00
Daniel Stenberg
ca43cd46a7
updated to the latest fixes to the shell script
2001-08-16 13:11:29 +00:00
Daniel Stenberg
666d0b67d1
const argument
2001-08-15 18:34:25 +00:00
Daniel Stenberg
7751756636
CURL_GLOBAL_WIN32 updates
2001-08-14 11:04:58 +00:00
Daniel Stenberg
2de6d8baf6
"added in 7.8.1"
2001-08-14 11:04:40 +00:00
Daniel Stenberg
b54b68ac7b
Added CURLOPT_HTTPGET and CURLOPT_SSL_VERIFYHOST, added notes to the two
...
timeout-options that they don't work in multi-threaded programs.
2001-08-09 12:08:23 +00:00
Daniel Stenberg
1ddf2907c7
non-blocking connect please
2001-08-09 12:04:16 +00:00
Daniel Stenberg
1b2f4031e1
Nico's notes about porting to VMS
2001-08-08 07:50:14 +00:00
Daniel Stenberg
edec65246a
credit where credit is due, added a bunch of recent contributors
2001-08-08 07:23:23 +00:00
Daniel Stenberg
7b9ec9507f
replacing FILE * with common file descriptors?
2001-08-07 21:36:07 +00:00
Daniel Stenberg
4045cd5ec0
language correction
2001-08-07 21:21:24 +00:00
Daniel Stenberg
81b6ebc0f4
added Rick Jones's more polite wording of 1.7, makes it better and friendlier
2001-08-07 18:02:37 +00:00
Daniel Stenberg
c528dc53c9
added "1.7 What about CURL from curl.com?"
2001-08-07 11:17:37 +00:00
Daniel Stenberg
711a3a79e3
Added RISC OS and OpenVMS to ported operating systems
2001-08-06 10:09:43 +00:00
Daniel Stenberg
7f21669ef2
-G or similar to make -d data get into a GET
2001-08-04 14:42:41 +00:00
Daniel Stenberg
f24d54a9c4
clarified '-d @filename' with a tiny example
2001-08-03 14:06:25 +00:00
Sterling Hughes
e7b966b9eb
Funny, I skipped right over this before.
...
everyting -> everything
2001-08-02 17:29:08 +00:00
Daniel Stenberg
929366b5ae
Frank Keeney pointed out a manual mistake for certificate convertions
2001-08-02 17:12:07 +00:00
Daniel Stenberg
e1d8c5daa7
"Add an interface that enables a user to select prefered SSL ciphers to use."
...
Rob Styles posted the question, as he could've used this...
2001-08-02 17:08:24 +00:00
Sterling Hughes
f0efa89484
Leftover -- add a note about this in the examples file :)
2001-07-12 02:00:24 +00:00
Sterling Hughes
45037a39aa
Add win32 initialization support to curl_global_init() and
...
curl_global_cleanup(). Update corresponding man pages...
Improve the logic in curl_global_cleanup() and curl_global_init() so that
they are not called twice if the application libraries have been
initialized and make sure to reset the init flags in curl_global_cleanup().
2001-07-12 01:57:28 +00:00
Daniel Stenberg
2c39a4381a
added more ideas that've been floating around lately
2001-07-02 08:21:25 +00:00
Daniel Stenberg
532624bafe
removed the "change test suite" item, as that is already made
2001-07-02 07:04:16 +00:00
Daniel Stenberg
8469918306
Added an item about the cookie jar stuff, contains a link to the dev file
...
about this subject
2001-07-02 07:02:47 +00:00
Daniel Stenberg
9646a8b346
removed static, removed curl special return type, added include windows.h
2001-06-29 11:33:00 +00:00
Daniel Stenberg
303b3cf41c
added return type void in SYNOPSIS
2001-06-21 09:39:19 +00:00
Daniel Stenberg
fc535aa086
libcurl.5 is renamed to libcurl.3
2001-06-21 09:34:37 +00:00
Daniel Stenberg
2d5039184e
Added items we've discussed previously, and URLs to dev notes discussing
...
the matter
2001-06-19 09:12:27 +00:00
Daniel Stenberg
4ebf001d37
SM's suggested update of the Microsoft and SSL compiling section
2001-06-07 06:21:27 +00:00
Daniel Stenberg
6840f80d21
CURLOPT_CONNECTTIMEOUT works on win32 these days, S. Moonesamy pointed out
2001-06-01 07:33:38 +00:00
Daniel Stenberg
eb4534f735
removed CURLOPT_MUTE, it is not used anymore
2001-05-31 13:55:13 +00:00
Daniel Stenberg
f8d94a3849
Added CVS $Id$ keyword for inline version tracking
2001-05-31 08:41:42 +00:00
Daniel Stenberg
ac691cae88
updated to again set the flags of what to init, and now also feature a
...
set of available flags
2001-05-31 08:35:26 +00:00
Daniel Stenberg
f2e6d235f2
removed python interface, there is one now! ;-)
2001-05-30 10:42:18 +00:00
Daniel Stenberg
cab90bf98a
english fix
2001-05-30 08:01:35 +00:00
Daniel Stenberg
88d14e96ca
3.11 How do I POST with a different Content-Type?
2001-05-29 14:02:20 +00:00
Daniel Stenberg
04d1491a6b
clarified the MUTE option
2001-05-29 13:28:03 +00:00
Daniel Stenberg
de16ddd5b4
updated, improved language at a few places
2001-05-29 13:23:41 +00:00
Daniel Stenberg
27751df6ec
moved list of authors to the separate THANKS file and added that to the
...
release archive
2001-05-29 12:09:47 +00:00
Daniel Stenberg
cf02eb11f6
text: added in 7.8
2001-05-29 12:09:15 +00:00
Daniel Stenberg
22b8d387bc
beauty fix
2001-05-29 08:27:43 +00:00
Daniel Stenberg
38cabc4fdb
ftps:// works
2001-05-28 21:45:10 +00:00
Daniel Stenberg
f44f512f24
global_init() takes a flag option now, to tell libcurl what _not_ to init.
...
it will make it better when the application uses several libs that use
openssl and it also enables us to do the win32 winsock initing in the future
if we want to
2001-05-28 15:30:38 +00:00
Daniel Stenberg
1e5e0f9a26
added 'curl-config --vernum' for hardcore hex version output
2001-05-28 14:58:07 +00:00
Daniel Stenberg
a9d0a85842
curl_global_cleanup and curl_global_init added to the family
2001-05-28 14:11:02 +00:00
Daniel Stenberg
93c53424c8
cleanup commit for new autoconf+automake+libtool versions
2001-05-22 18:16:24 +00:00
Daniel Stenberg
0058e87ed5
added some, removed some, moved around some.
2001-05-18 12:55:13 +00:00
Daniel Stenberg
a84af986fd
added pointer to the examples/getinmemory.c source code for paragraph
...
5.2 "How can I receive all data into a large memory chunk?"
2001-05-15 13:09:27 +00:00
Daniel Stenberg
3ab3be1b6e
Added getinmemory.c
2001-05-15 13:08:23 +00:00
Daniel Stenberg
3ceb2bcbb9
this might actually compile too...
2001-05-15 13:04:53 +00:00
Daniel Stenberg
2457a31948
an example on how you can use the write callback to receive data in a memory
...
chunk
2001-05-15 13:03:53 +00:00
Daniel Stenberg
9e1e318691
We need -lpthread for the pthread example
2001-05-15 12:56:38 +00:00
Daniel Stenberg
e1132ecbe6
corrected
2001-05-15 12:55:35 +00:00
Daniel Stenberg
ccb92f1a8a
Added Pawel A. Gajda
2001-05-15 11:00:29 +00:00
Daniel Stenberg
4dbac041f1
removed some texts like "starting with version XXX" blabla
2001-05-08 12:39:40 +00:00
Daniel Stenberg
dd344b65f2
made clear that the cookie file format understood is Netscape _and_ Mozilla
2001-05-08 12:30:37 +00:00
Daniel Stenberg
4127903183
Added multithread.c
2001-05-04 09:35:55 +00:00
Daniel Stenberg
2ffc20dc7c
example using multiple threads to get URLs
2001-05-04 09:35:43 +00:00
Daniel Stenberg
a2a446cb2f
updated contributors list
2001-05-04 08:46:11 +00:00
Daniel Stenberg
9304055df5
'FILE *' changed to 'void *' in all callback functions
2001-05-04 07:47:11 +00:00
Daniel Stenberg
53e0c1b1a6
fixed the link to the OS/2 Patch for OpenSSL
2001-05-04 06:17:01 +00:00
Daniel Stenberg
4efa1e8e4c
corrected bad use of the CURLOPT_HTTPPOST header
2001-05-03 14:24:37 +00:00
Daniel Stenberg
73982c65d2
fixed the EXTRA_DIST line
2001-05-03 09:10:07 +00:00
Daniel Stenberg
26d4c80049
clarified and updated
2001-04-27 14:46:17 +00:00
Daniel Stenberg
8d0c1d5495
minor rephrasing
2001-04-23 12:36:02 +00:00
Daniel Stenberg
2769a9ab0b
form post, not just form
2001-04-23 11:57:50 +00:00
Daniel Stenberg
8ea5b5bbd0
clarified and extended with an example
2001-04-23 11:55:25 +00:00