Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-02-04 | fix printf-style format strings | Yang Tse | |
2010-02-02 | Fix compiler warning: conditional expression is constant | Yang Tse | |
2010-01-28 | fix printf-style format strings | Yang Tse | |
2010-01-22 | wrap long lines and do some indent policing | Daniel Stenberg | |
2010-01-11 | - Made sure that the progress callback is repeatedly called at a regular | Daniel Stenberg | |
interval even during very slow connects. | |||
2009-12-30 | VMS specific preprocessor symbol checking adjustments | Yang Tse | |
2009-10-01 | - Tom Mueller correctly reported in bug report #2870221 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=2870221) that libcurl returned an incorrect return code from the internal trynextip() function which caused him grief. This is a regression that was introduced in 7.19.1 and I find it strange it hasn't hit us harder, but I won't persue into figuring out exactly why. | |||
2009-10-01 | - Constantine Sapuntzakis: The current implementation will always set | Daniel Stenberg | |
SO_SNDBUF to CURL_WRITE_SIZE even if the SO_SNDBUF starts out larger. The patch doesn't do a setsockopt if SO_SNDBUF is already greater than CURL_WRITE_SIZE. This should help folks who have set up their computer with large send buffers. | |||
2009-08-29 | add cast to silent compiler warning with 64bit systems. | Gunter Knauf | |
2009-07-09 | - Eric Wong introduced curlx_nonblock() that the curl tool now (re-)uses for | Daniel Stenberg | |
setting a file descriptor non-blocking. Used by the functionality Eric himself brough on June 15th. | |||
2009-05-07 | Curl_sndbufset is (at times) defined in the header, no need to do it again here | Daniel Stenberg | |
2009-05-07 | - Made the SO_SNDBUF setting for the data connection socket for ftp uploads as | Daniel Stenberg | |
well. See change 28 Apr 2009. | |||
2009-05-02 | Use build-time configured curl_socklen_t instead of socklen_t | Yang Tse | |
2009-04-30 | fix compiler warning: unused parameter | Yang Tse | |
2009-04-28 | - Constantine Sapuntzakis filed bug report #2783090 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=2783090) pointing out that on windows we need to grow the SO_SNDBUF buffer somewhat to get really good upload speeds. http://support.microsoft.com/kb/823764 has the details. Friends confirmed that simply adding 32 to CURL_MAX_WRITE_SIZE is enough. | |||
2009-04-21 | libcurl's memory.h renamed to curl_memory.h | Yang Tse | |
2009-02-28 | for portability reasons: s/inet_pton/Curl_inet_pton/ | Yang Tse | |
2009-02-27 | - Senthil Raja Velu reported a problem when CURLOPT_INTERFACE and | Daniel Stenberg | |
CURLOPT_LOCALPORT were used together (the local port bind failed), and Markus Koetter provided the fix! | |||
2008-12-30 | changed HAVE_SIN6_SCOPE_ID define to HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID since ↵ | Gunter Knauf | |
just found that ares already uses this define. | |||
2008-12-16 | Added the use of Watt-32 tcp/ip stack for Win32 targets. | Gisle Vanem | |
2008-11-14 | Added some #ifdefs around header files and change the EAGAIN test to | Dan Fandrich | |
fix compilation on Cell (reported by Jeff Curley). | |||
2008-11-13 | Refactor configure script detection of functions used to set sockets into | Yang Tse | |
non-blocking mode, and decouple function detection from function capability. | |||
2008-11-06 | Merged existing IPv4 and IPv6 Curl_ip2addr functions into a single one | Yang Tse | |
which now also takes a protocol address family argument. | |||
2008-11-03 | - Bug #2218480 (http://curl.haxx.se/bug/view.cgi?id=2218480) pointed out a | Daniel Stenberg | |
problem with my CURLINFO_PRIMARY_IP fix from October 7th that caused a NULL pointer read. I also took the opportunity to clean up this logic (storing of the connection's IP address) somewhat as we had it stored in two different places and ways previously and they are now unified. | |||
2008-10-24 | Stop using in6addr_any because it's not available everywhere (e.g. Symbian) | Dan Fandrich | |
and isn't strictly needed here. | |||
2008-10-24 | fix compiler warning | Yang Tse | |
2008-10-17 | portability fix to avoid memory alignment problems | Yang Tse | |
2008-10-13 | There's no guarantee that a socket was involved at this point, so avoid ↵ | Yang Tse | |
displaying any error code. And on the other hand a message after setsockopt() certainly must use SOCKERRNO. | |||
2008-10-11 | fix compiler warning | Yang Tse | |
2008-10-10 | Allow compilation when no IPv6 stack is available. | Dan Fandrich | |
2008-10-09 | Fixed the --interface option to work with IPv6 connections on glibc | Dan Fandrich | |
systems supporting getifaddrs(). Also fixed a problem where an IPv6 address could be chosen instead of an IPv4 one for --interface when it involved a name lookup. | |||
2008-09-08 | fix compiler warning | Yang Tse | |
2008-08-26 | Fixed out of memory problems that caused torture test failures in tests | Dan Fandrich | |
1021 and 1067. | |||
2008-07-30 | - Phil Blundell added the CURLOPT_SCOPE option, as well as adjusted the URL | Daniel Stenberg | |
parser to allow numerical IPv6-addresses to be specified with the scope given, as per RFC4007 - with a percent letter that itself needs to be URL escaped. For example, for an address of fe80::1234%1 the HTTP URL is: "http://[fe80::1234%251]/" | |||
2008-07-28 | Fixed display of the interface bind address in the trace output when it's | Dan Fandrich | |
an IPv6 address. | |||
2008-06-08 | use our *printf functions only. | Gunter Knauf | |
2008-06-06 | - Added CURLINFO_PRIMARY_IP as a new information retrievable with | Daniel Stenberg | |
curl_easy_getinfo. It returns a pointer to a string with the most recently used IP address. Modified test case 500 to also verify this feature. The implementing of this feature was sponsored by Lenny Rachitsky at NeuStar. | |||
2008-05-21 | Removed some duplicated #includes | Dan Fandrich | |
2008-05-12 | - Introducing curl_easy_send() and curl_easy_recv(). They can be used to send | Daniel Stenberg | |
and receive data over a connection previously setup with curl_easy_perform() and its CURLOPT_CONNECT_ONLY option. The sendrecv.c example was added to show how they can be used. | |||
2008-05-03 | - Jean-Francois Bertrand reported a libcurl crash with CURLOPT_TCP_NODELAY | Daniel Stenberg | |
since libcurl used getprotobyname() and that isn't thread-safe. We now switched to use IPPROTO_TCP unconditionally, but perhaps the proper fix is to detect the thread-safe version of the function and use that. http://curl.haxx.se/mail/lib-2008-05/0011.html | |||
2008-05-01 | - Bart Whiteley provided a patch that made libcurl work properly when an app | Daniel Stenberg | |
uses the CURLOPT_OPENSOCKETFUNCTION callback to create a unix domain socket to a http server. | |||
2008-04-22 | Added support for running on Symbian OS. | Dan Fandrich | |
2008-02-07 | - Refactored a lot of timeout code into a few functions in an attempt to make | Daniel Stenberg | |
them all use the same (hopefully correct) logic to make it less error-prone and easier to introduce library-wide where it should be used. | |||
2008-01-08 | Change typecast due to ↵ | Yang Tse | |
http://cool.haxx.se/cvs.cgi/curl/include/curl/curl.h.diff?r1=1.336&r2=1.337 | |||
2007-11-05 | removed space after if and while before the parenthesis for better source code | Daniel Stenberg | |
consistency | |||
2007-10-17 | Fix compiler warning: signed and unsigned type in conditional expression | Yang Tse | |
2007-10-17 | Fix compiler warning: comparison between signed and unsigned | Yang Tse | |
2007-10-04 | Kim Rinnewitz reported that --local-port didn't work with TFTP transfers. | Daniel Stenberg | |
This happened because the tftp code always uncondionally did a bind() without caring if one already had been done and then it failed. I wrote a test case (1009) to verify this, but it is a bit error-prone since it will have to pick a fixed local port number and since the tests are run on so many different hosts in different situations I add it in disabled state. | |||
2007-10-03 | exported symbols must use lowercase "curl_", and I also fixed two compiler | Daniel Stenberg | |
warnings, one C99 thing and the bad pointer sent to the callback | |||
2007-10-03 | Alexey Pesternikov introduced CURLOPT_OPENSOCKETFUNCTION and | Daniel Stenberg | |
CURLOPT_OPENSOCKETDATA to set a callback that allows an application to replace the socket() call used by libcurl. It basically allows the app to change address, protocol or whatever of the socket. (I also did some whitespace indent/cleanups in lib/url.c which kind of hides some of these changes, sorry for mixing those in.) |