Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-07-27 | Peteris Krumins added CURLOPT_COOKIELIST and CURLINFO_COOKIELIST, which is a | Daniel Stenberg | |
simple interface to extracting and setting cookies in libcurl's internal "cookie jar". See the new cookie_interface.c example code. | |||
2005-07-27 | disabling HTTP should also nullify this function call | Daniel Stenberg | |
2005-07-27 | Fixed --without-gnutls | Dan Fandrich | |
2005-07-21 | Fixed some typos in output messages. | Dan Fandrich | |
2005-07-20 | Properly support the options --without-spnego --without-gssapi --without-krb4 | Dan Fandrich | |
2005-07-20 | Add -Wdeclaration-after-statement to gcc to detect accidental C99-style | Dan Fandrich | |
variable declarations. | |||
2005-07-17 | Simplified the code within curl_easy_perform() that calls Curl_perform(). | Daniel Stenberg | |
Pointed out by Bjorn Reese. | |||
2005-07-15 | cURLpp 0.5.1 | Daniel Stenberg | |
2005-07-13 | Diego Casorran patches to make (lib)curl build fine on Amiga again | Daniel Stenberg | |
2005-07-13 | better description for HEADERFUNCTION | Daniel Stenberg | |
2005-07-13 | elaborate a bit on how to deal with chunked-encoded trailers that now are | Daniel Stenberg | |
passed to the app using the header callback | |||
2005-07-13 | converted this back to one name per line to make it easier/better to diff | Daniel Stenberg | |
and merge when new names are added | |||
2005-07-12 | mention the Rexx/CURL release | Daniel Stenberg | |
2005-07-12 | Adrian Schuur added trailer support in the chunked encoding stream. The | Daniel Stenberg | |
trailer is then sent to the normal header callback/stream. | |||
2005-07-08 | mention an old idea | Daniel Stenberg | |
2005-07-07 | mention the exception only once ;-) | Daniel Stenberg | |
2005-07-05 | correction for the 407 with response-body case | Daniel Stenberg | |
2005-07-05 | Update copyright. | Gisle Vanem | |
2005-07-05 | Gisle Vanem came up with a nice little work-around for bug #1230118. It | Daniel Stenberg | |
seems the Windows (MSVC) libc time functions may return data one hour off if TZ is not set and automatic DST adjustment is enabled. This made curl_getdate() return wrong value, and it also concerned internal cookie expirations etc. | |||
2005-07-04 | mention the strerror_r detection fix in configure | Daniel Stenberg | |
2005-07-03 | Andrew Bushnell provided enough info for me to tell that we badly needed to | Daniel Stenberg | |
fix the CONNECT authentication code with multi-pass auth methods (such as NTLM) as it didn't previously properly ignore response-bodies - in fact it stopped reading after all response headers had been received. This could lead to libcurl sending the next request and reading the body from the first request as response to the second request. (I also renamed the function, which wasn't strictly necessary but...) The best fix would to once and for all make the CONNECT code use the ordinary request sending/receiving code, treating it as any ordinary request instead of the special-purpose function we have now. It should make it better for multi-interface too. And possibly lead to less code... Added test case 265 for this. It doesn't work as a _really_ good test case since the test proxy is too stupid, but the test case helps when running the debugger to verify. | |||
2005-06-30 | add more info when this script gets confused, and added getaddrinfo and | Daniel Stenberg | |
freeaddrinfo to the trace output | |||
2005-06-30 | use %p to printf pointers since %x doesn't work properly on tru64 for this | Daniel Stenberg | |
(and besides, we should be using the same %-code for all pointers) | |||
2005-06-30 | enable memory debugging on tru64 with ipv6 support by doing a little different | Daniel Stenberg | |
defining, since the system headers themselves redefine getaddrinfo | |||
2005-06-30 | Detect (or at least infer) glibc-style strerror_r even when cross-compiling. | Dan Fandrich | |
2005-06-28 | new Lua binding | Daniel Stenberg | |
2005-06-26 | clarify that ftp ascii transfers don't do right in current libcurl | Daniel Stenberg | |
2005-06-23 | added docs about the new proxy string support | Daniel Stenberg | |
2005-06-22 | David Shaw fixes | Daniel Stenberg | |
2005-06-22 | mention more ARMs | Daniel Stenberg | |
2005-06-22 | verify that the URL decoding is done properly too | Daniel Stenberg | |
2005-06-22 | David Shaw's fix that unifies proxy string treatment so that a proxy given | Daniel Stenberg | |
with CURLOPT_PROXY can use a http:// prefix and user + password. The user and password fields are now also URL decoded properly. Test case 264 added to verify. | |||
2005-06-22 | David Shaw's updated version: | Daniel Stenberg | |
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-20 | mistake | Daniel Stenberg | |
2005-06-19 | possible windows memory leak fixed by Gisle | Daniel Stenberg | |
2005-06-19 | Added some checks for the addrinfo structure. | Dominick Meglio | |
2005-06-14 | Ensure thread handle is closed too. | Gisle Vanem | |
2005-06-13 | 4.13 Why is curl -R on Windows one hour off? | Daniel Stenberg | |
2005-06-13 | recent buildconf fiddling | Daniel Stenberg | |
2005-06-13 | run libtoolize in the ares dir as well, and modified the output slightly for | Daniel Stenberg | |
all tools run in the ares dir - now shown like "running ares/[tool]" | |||
2005-06-11 | CURLINFO_FILETIME returns the time for GMT | Daniel Stenberg | |
2005-06-09 | make sure the found tool is a regular file (and not a dir or something) | Daniel Stenberg | |
2005-06-09 | Modified to use 'head -n 1' instead of 'head -1' since some versions of head | Daniel Stenberg | |
complains and claims this is deprecated. | |||
2005-06-07 | Reverted Tupone Alfredo's patch, as it broke NUMEROUS autobuilds. Let's do the | Daniel Stenberg | |
changes in a slower and more controlled manner... | |||
2005-06-06 | Tupone Alfredo's fixes: | Daniel Stenberg | |
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-03 | first rough version | Daniel Stenberg | |
2005-06-03 | Andres Garcia's text mode fix for the 'data' part | Daniel Stenberg | |
2005-06-03 | FIONBIO is in sys/ioctl.h on AIX | Daniel Stenberg | |
2005-06-02 | sigh, define TRUE if not already | Daniel Stenberg | |
2005-06-02 | William Ahern: | Daniel Stenberg | |
Make UDP sockets non-blocking. I've confirmed that at least on Linux 2.4 a read event can come back from poll() on a valid SOCK_DGRAM socket but recv(2) will still block. This patch doesn't ignore EAGAIN in read_udp_packets(), though maybe it should. (This patch was edited by Daniel Stenberg and a new configure test was added (imported from curl's configure) to properly detect what non-blocking socket approach to use.) |