Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-11-19 | - Christian Krause reported and fixed a memory leak that would occur with HTTP | Daniel Stenberg | |
GSS/kerberos authentication (http://curl.haxx.se/bug/view.cgi?id=2284386) | |||
2008-11-19 | - Andreas Wurf and Markus Koetter helped me analyze a problem that Andreas got | Daniel Stenberg | |
when uploading files to a single FTP server using multiple easy handle handles with the multi interface. Occasionally a handle would stall in mysterious ways. The problem turned out to be a side-effect of the ConnectionExists() function's eagerness to re-use a handle for HTTP pipelining so it would select it even if already being in use, due to an inadequate check for its chances of being used for pipelnining. | |||
2008-11-19 | user provided PATH_SEPARATOR always overrides auto-detected one | Yang Tse | |
2008-11-18 | attempting to keep lines below 80 chars | Yang Tse | |
2008-11-18 | Avoid creating garbage on an OOM error | Dan Fandrich | |
2008-11-18 | provide a common PATH_SEPARATOR check method which is required by | Yang Tse | |
upcomming work to support the broadest range of Autoconf versions | |||
2008-11-18 | Made an array static const | Dan Fandrich | |
2008-11-18 | Added #include "rawstr.h" | Dan Fandrich | |
2008-11-18 | check for gethostbyaddr and gethostbyname as it is done for other functions | Yang Tse | |
2008-11-17 | curl also builds fine for microblaze uclinux | Daniel Stenberg | |
2008-11-17 | libcurl has been built and ran on Cell OS on the Cell processor (playstation 3) | Daniel Stenberg | |
2008-11-17 | Added more compiler warning options for gcc 4.3 | Dan Fandrich | |
2008-11-17 | Display the time in verbose mode during the torture tests to help determine | Dan Fandrich | |
when the tests stall. | |||
2008-11-17 | the IP address we want/request/use from the interface is the 'local' | Yang Tse | |
address, the one on the box libcurl is running, not the 'remote' one. | |||
2008-11-17 | fix comment | Yang Tse | |
2008-11-17 | if2ip.c related preprocessor cleanup | Yang Tse | |
2008-11-17 | Make configure script check if ioctl with the SIOCGIFADDR command can be | Yang Tse | |
used, and define HAVE_IOCTL_SIOCGIFADDR if appropriate. | |||
2008-11-17 | fix leftover from previous commit | Yang Tse | |
2008-11-17 | pipelining for PUT is a good idea | Daniel Stenberg | |
2008-11-17 | Fixed an outdated mention of having keep strings around in curl_easy_setopt | Dan Fandrich | |
calls. Added a paragraph explaining that libcurl takes care of low-level protocol details. Made a few minor edits. | |||
2008-11-17 | update with my last changes | Yang Tse | |
2008-11-17 | fix inet_pton() runtime configure check | Yang Tse | |
2008-11-17 | backport fix for failures to reject certain malformed literals | Yang Tse | |
2008-11-16 | Christian Krause fixed a build failure when building with gss support | Daniel Stenberg | |
enabled and FTP disabled. | |||
2008-11-16 | fix OOM problem reported by Jim Meyering | Daniel Stenberg | |
2008-11-16 | trim down configure script size | Yang Tse | |
2008-11-15 | my recent changes | Daniel Stenberg | |
2008-11-15 | based on a report by Jim Meyering, I went over and added checks for return | Daniel Stenberg | |
codes for all calls to malloc and strdup that were missing. I also changed a few malloc(13) to use arrays on the stack and a few malloc(PATH_MAX) to instead use aprintf() to lower memory use. I also fixed a memory leak in Curl_nss_connect() when CURLOPT_ISSUERCERT is in use. | |||
2008-11-15 | Fixed an OOM condition reported by Jim Meyering | Daniel Stenberg | |
2008-11-14 | Added some more examples of options to reduce binary size. Added x86_64 Linux | Dan Fandrich | |
as a known-working environment. | |||
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-14 | Added .xml as one of the few common file extensions known by the multipart | Dan Fandrich | |
form generator. Made the extensions part of the MIME type struct to reduce the size and run-time relocations necessary to build the table. | |||
2008-11-14 | check for NULL returns from strdup() - reported by Jim Meyering | Daniel Stenberg | |
also prevent buffer overflow on MSDOS when you do for example -O on a url with a file name part longer than PATH_MAX letters | |||
2008-11-14 | fix an OOM problem detected by Jim Meyering | Daniel Stenberg | |
2008-11-14 | Remove a chunk of unused code that was #ifdef'de on defines we never set. | Daniel Stenberg | |
We do testing of code functions using the test suite instead! | |||
2008-11-14 | fix typo affecting inclusion of <arpa/inet.h> in configure | Yang Tse | |
checks for inet_ntoa_r() inet_ntop() and inet_pton() | |||
2008-11-14 | #include <string.h> in the getaddrinfo() runtime check for the memset() ↵ | Yang Tse | |
prototype | |||
2008-11-14 | fix symbol definition check for fcntl.h inclusion | Yang Tse | |
2008-11-14 | #include <stdlib.h> in the getifaddrs() runtime check for the exit() prototype | Yang Tse | |
2008-11-13 | curl runs fine on Linux on Cell (PS3) | Daniel Stenberg | |
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-13 | and we are now on the 7.19.3 road | Daniel Stenberg | |
2008-11-13 | 7.19.2 coming up | Daniel Stenberg | |
2008-11-13 | two more things for 7.19.3 | Daniel Stenberg | |
2008-11-13 | - Fixed a potential data loss in Curl_client_write() when the transfer is | Michal Marek | |
paused. | |||
2008-11-13 | Shortened some FTP responses to allow the timeout to be reduced by a second | Dan Fandrich | |
while still causing a timeout during the data phase. | |||
2008-11-13 | changed to latest libidn version. | Gunter Knauf | |
2008-11-13 | changed defines to make autobuild logs display libidn usage. | Gunter Knauf | |
2008-11-12 | Fixed an OOM problem with test 560 | Dan Fandrich | |
2008-11-12 | Give the test an extra second to run so it passes on slow machines | Dan Fandrich | |