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