Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-02-24 | Kjetil Jacobsen found out that setting CURLOPT_MAXCONNECTS to a value higher | Daniel Stenberg | |
than 5 could cause a segfault. | |||
2003-02-04 | added the sharing of DNS cache | Jean-Philippe Barette-LaPierre | |
2003-01-29 | removed the local variables for emacs and vim, use the new sample.emacs | Daniel Stenberg | |
way for emacs, and vim users should provide a similar non-polluting style | |||
2003-01-20 | Markus F.X.J. Oberhumer's patch that reduces memory usage quite a bit by | Daniel Stenberg | |
only allocating the scratch memory buffer once it is needed and not always in the handle. | |||
2003-01-20 | given passwords in netrc must be respected accordingly | Daniel Stenberg | |
2003-01-16 | copyright year update in the source header | Daniel Stenberg | |
2003-01-15 | removed a TAB | Daniel Stenberg | |
2003-01-10 | Steve Oliphant pointed out that test case 105 did not work anymore and this | Daniel Stenberg | |
was due to a missing fix for the password prompting | |||
2003-01-09 | if userpwd is "username:", this now implies a blank password while only | Daniel Stenberg | |
"username" will cause libcurl to prompt for password. Bryan Kemp noticed. test case 136 is added for this | |||
2003-01-08 | updated to use the modified share-types | Daniel Stenberg | |
2003-01-07 | Simon Liu's HTTP200ALIASES-patch! | Daniel Stenberg | |
2002-12-13 | conn->bits.tcpconnect now keeps track of if this connection is connected | Daniel Stenberg | |
or not | |||
2002-12-09 | The fread() callback pointer and associated pointer is now stored in the | Daniel Stenberg | |
connectdata struct instead, and is no longer modified within the 'set' struct as previously (which was a really BAAAD thing). | |||
2002-11-22 | bug fix for the problem Juan Ignacio Hervás discovered today | Daniel Stenberg | |
2002-11-20 | Kjetil Jacobsen's patch that introduces CURLOPT_PRIVATE and CURLINFO_PRIVATE | Daniel Stenberg | |
for storage and retrieval of private data in the curl handle. | |||
2002-11-11 | moved the bools in the connectdata struct into the substruct named | Daniel Stenberg | |
ConnectBits where the other bools already are | |||
2002-11-11 | The test for DNS cache entries left locked is now only built if | Daniel Stenberg | |
AGGRESIVE_TEST is also defined, as an addition to MALLOCDEBUG. It doesn't work for multi interface usage and should only be used with careful consideration. | |||
2002-11-11 | unlock dns cache entries with a function call instead of a variable fiddle | Daniel Stenberg | |
2002-11-11 | Now supports "Transfer-Encoding: chunked" for HTTP PUT operations where the | Daniel Stenberg | |
size of the uploaded file is unknown. | |||
2002-11-07 | Bug report #634625 identified how curl returned timeout immediately when | Daniel Stenberg | |
CURLOPT_CONNECTTIMEOUT was used and provided a fix. | |||
2002-11-05 | ipv4-fixes for the new Curl_dns_entry struct and Curl_resolv() proto | Daniel Stenberg | |
2002-11-05 | Curl_resolv() now returns a different struct, and it contains a reference | Daniel Stenberg | |
counter so that the caller needs to decrease that counter when done with the returned data. If compiled with MALLOCDEBUG I've added some extra checking that the counter is decreased before a handle is closed etc. | |||
2002-10-28 | kromJx@crosswinds.net's fix that now uses checkprefix() instead of | Daniel Stenberg | |
strnequal() when the third argument was strlen(first argument) anyway. This makes it less prone to errors. (Slightly edited by me) | |||
2002-10-28 | prevent compiler warnings | Daniel Stenberg | |
2002-10-17 | Make the COOKIESESSION work better by creating a list of cookie files files | Daniel Stenberg | |
when given in the curl_easy_setopt() and then parse them all on the first curl_easy_perform() call instead. | |||
2002-10-10 | Jeff Lawson fixed a few problems with connection re-use that remained when | Daniel Stenberg | |
you set CURLOPT_PROXY to "". | |||
2002-09-27 | Allow a "" proxy explicitly set dont-use-proxy, i.e don't even check the | Daniel Stenberg | |
environment variables or anything. Setting it to NULL disables proxy as well, but allows the environment variables to kick in and be used. | |||
2002-09-25 | Andrés García found out that Curl_protocol_connect() could return an | Daniel Stenberg | |
uninitialized variable. | |||
2002-09-25 | Wez Furlong's curl_version_info() function added, still needs some | Daniel Stenberg | |
adjustments and possibly some improvments to feature all those things we could possibly want from this. | |||
2002-09-11 | Lukasz Czekierda correctly pointed out that curl used a bad Host: header | Daniel Stenberg | |
when talking to a IPv6-server using IPv6 IP address only. | |||
2002-09-09 | minor indent change | Daniel Stenberg | |
2002-09-03 | updated source code boilerplate/header | Daniel Stenberg | |
2002-09-02 | James Gallagher's Content-Encoding work | Daniel Stenberg | |
2002-08-30 | CURLE_SSL_INSECURE is removed again and so is CURLOPT_SSL_INSECURE, we | Daniel Stenberg | |
proceed fine with the already existing options, just having a different internal library default for capath. | |||
2002-08-30 | SOCKS5 support added (contributed by a still unnamed person). Not properly | Daniel Stenberg | |
working for "IPv6 enabled" libcurls yet, but should be pretty easy for someone to adjust. | |||
2002-08-26 | SSL_INSECURE support and usage added | Daniel Stenberg | |
2002-08-26 | Andrew Francis removed the need for/use of MSVC pragmas | Daniel Stenberg | |
2002-08-13 | Sterling Hughes brings the share interface | Daniel Stenberg | |
2002-08-12 | Initial fix to make the multi interface return control while waiting for | Daniel Stenberg | |
the initial connect to "come through". This should work fine for connect and for FTP-PASV connects. Needs massive testing. | |||
2002-08-08 | Markus F.X.J. Oberhumer's CURLOPT_NOSIGNAL patch | Daniel Stenberg | |
2002-08-05 | re-added the RFC2732-parser that was lost for some reason during the flow | Daniel Stenberg | |
of time! | |||
2002-07-29 | Removed checks for if set.fpasswd is NULL, as we prevent users from setting | Daniel Stenberg | |
it to NULL and then use the internal default instead. It will always be a function to call. | |||
2002-06-15 | CURLOPT_BUFFERSIZE allows an application to set a prefered buffer size | Daniel Stenberg | |
for receiving data from the network. It is meant as a hint, not as a forced limit. | |||
2002-06-14 | - Yarram Sunil found out that the SocketIsDead() function performed a lot | Daniel Stenberg | |
faster on Windows when removing the 1 microsecond timeout. | |||
2002-06-11 | put #ifdefs around the sigjmp_buf declaration too, as it should be | Daniel Stenberg | |
2002-06-11 | corrected the signal handler | Daniel Stenberg | |
2002-06-11 | Now uses sigsetjmp() and siglongjmp() to bail out from slow name lookups in | Daniel Stenberg | |
case a timeout is set. This seems to work. God knows if it is good enough or what kind of side-effects we introduce here and now. I'll close my eyes and cross my fingers. Hard. | |||
2002-06-11 | removed accidentally added debug-code! | Daniel Stenberg | |
2002-06-11 | added disable-[protocol] support, largely provided by Miklos Nemeth | Daniel Stenberg | |
2002-05-28 | Cris Bailiff's CAPATH support added | Daniel Stenberg | |