Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-07-30 | - PHP's bug report #43158 (http://bugs.php.net/bug.php?id=43158) identifies a | Daniel Stenberg | |
true bug in libcurl built with OpenSSL. It made curl_easy_getinfo() more or less always return 0 for CURLINFO_SSL_VERIFYRESULT because the function that would set it to something non-zero would return before the assign in almost all error cases. The internal variable is now set to non-zero from the start of the function only to get cleared later on if things work out fine. | |||
2008-07-30 | Factored out Curl_copy_header_value | Dan Fandrich | |
2008-07-30 | Sync comment with reality. | Yang Tse | |
2008-07-30 | Undo using the sreadfrom() wrapper to replace recvfrom() in our code. | Yang Tse | |
2008-07-30 | Minor Symbian updates. | Dan Fandrich | |
2008-07-30 | Fixed --use-ascii to properly convert text files on Symbian OS, MS-DOS | Dan Fandrich | |
and OS/2. | |||
2008-07-29 | Eliminate a unnecessary socket creation in Curl_getaddrinfo for an IPv4 | Dan Fandrich | |
address in an IPv6 capable libcurl. | |||
2008-07-29 | ignore *.dist files | Yang Tse | |
2008-07-28 | Fixed display of the interface bind address in the trace output when it's | Dan Fandrich | |
an IPv6 address. | |||
2008-07-27 | setup.h handles definition of _REENTRANT based on NEED_REENTRANT | Yang Tse | |
definition which might be defined in config.h or config-*.h files | |||
2008-07-27 | Eliminate a unnecessary socket creation in Curl_getaddrinfo for an IPv4 | Dan Fandrich | |
address in an IPv6 capable libcurl. | |||
2008-07-26 | - David Bau filed bug report #2026240 "CURL_READFUNC_PAUSE leads to buffer | Daniel Stenberg | |
overrun" (http://curl.haxx.se/bug/view.cgi?id=2026240) identifying two problems, and providing the fix for them: - CURL_READFUNC_PAUSE did in fact not pause the _sending_ of data that it is designed for but paused _receiving_ of data! - libcurl didn't internally set the read counter to zero when this return code was detected, which would potentially lead to junk getting sent to the server. | |||
2008-07-24 | ignore curllib.vcproj | Yang Tse | |
2008-07-22 | minor reordering in OS/400 config/setup files | Yang Tse | |
2008-07-21 | Change recvfrom's sixth argument data type to the 'historically standard' 'int' | Yang Tse | |
data type for systems where this sixth argument is prototyped as a void pointer. Start of thread: http://curl.haxx.se/mail/lib-2008-07/0153.html | |||
2008-07-21 | Undefine 'byte' due to dict.c. | Gisle Vanem | |
2008-07-21 | fix compiler warning: comparison between signed and unsigned | Yang Tse | |
2008-07-21 | Adjust recvfrom's sixth arg data type definition for NetWare (LIBC) | Yang Tse | |
2008-07-21 | Use the sreadfrom() wrapper to replace recvfrom() in our code. | Yang Tse | |
2008-07-21 | when recvfrom prototype uses a void pointer for arguments 2, 5 or 6 this will | Yang Tse | |
now cause the definition of RECVFROM_TYPE_ARG2_IS_VOID, RECVFROM_TYPE_ARG5_IS_VOID or RECVFROM_TYPE_ARG6_IS_VOID, as appropriate. | |||
2008-07-17 | RECVFROM_TYPE_ARG2, RECVFROM_TYPE_ARG5 and RECVFROM_TYPE_ARG6 are now defined | Yang Tse | |
to the data type pointed by its respective argument and not the pointer type. | |||
2008-07-16 | fix comment | Yang Tse | |
2008-07-16 | Configure process now checks availability of recvfrom() socket function and | Yang Tse | |
finds out its return type and the types of its arguments. Added definitions for non-configure systems config files, and introduced macro sreadfrom which will be used on udp sockets as a recvfrom() wrapper. | |||
2008-07-15 | add comment for include paths | Yang Tse | |
2008-07-14 | Move _REENTRANT definition earlier in lib/setup.h | Yang Tse | |
2008-07-14 | Removed inclusion of remaining system header files from configuration files. | Yang Tse | |
These are included from lib/setup.h or specific source code file. | |||
2008-07-14 | Inclusion of <extra/stricmp.h> and <extra/strdup.h> is moved to lib/setup.h | Yang Tse | |
2008-07-14 | Remove duplicate file inclusions. These are already done in lib/setup.h | Yang Tse | |
and lib/setup_once.h | |||
2008-07-14 | Remove duplicate file inclusions. These are already done in lib/setup.h | Yang Tse | |
2008-07-14 | HTTP_ONLY definition check in lib/setup.h is now done once that configuration | Yang Tse | |
file has been included. In this way if symbol is defined in the config file it will no longer be ignored. | |||
2008-07-11 | fix multiple header inclusion prevention definition | Yang Tse | |
2008-07-11 | move multiple header inclusion prevention definition to top of file | Yang Tse | |
2008-07-11 | Added missing multiple header inclusion prevention definition | Yang Tse | |
2008-07-11 | indent and comment cleanup (no code change) | Daniel Stenberg | |
2008-07-11 | - Daniel Fandrich found out we didn't pass on the user-agent properly when | Daniel Stenberg | |
doing "proxy-tunnels" with non-HTTP prototols and that was simply because the code assumed the user-agent was only needed for HTTP. | |||
2008-07-11 | Changed slightly the SFTP quote commands chmod, chown and chgrp to only | Dan Fandrich | |
set the attribute that has changed instead of all possible ones. Hopefully, this will solve the "Permission denied" problem that Nagarajan Sreenivasan reported when setting some modes, but regardless, it saves a protocol round trip in the chmod case. | |||
2008-07-10 | Fixed another OOM problem, this time with test 64. | Dan Fandrich | |
2008-07-10 | Peter Lamberg filed bug report #2015126: "poll gives WSAEINVAL when POLLPRI | Yang Tse | |
is set in fdset.events" (http://curl.haxx.se/bug/view.cgi?id=2015126) which exactly pinpointed the problem only triggered on Windows Vista, provided reference to docs and also a fix. There is much work behind Peter Lamberg's excellent bug report. Thank You! | |||
2008-07-09 | - Andreas Schuldei improved Phil Blundell's patch for IPv6 using c-ares, and I | Daniel Stenberg | |
edited it slightly. Now you should be able to use IPv6 addresses fine even with libcurl built to use c-ares. | |||
2008-07-09 | Fixed an OOM handling problem that cause test 11 to fail the torture test. | Dan Fandrich | |
2008-07-08 | Fixed test 554 to pass the torture test. | Dan Fandrich | |
2008-07-07 | - Scott Barrett provided a test case for a segfault in the FTP code and the | Daniel Stenberg | |
fix for it. It occured when you did a FTP transfer using CURLFTPMETHOD_SINGLECWD and then did another one on the same easy handle but switched to CURLFTPMETHOD_NOCWD. Due to the "dir depth" variable not being cleared properly. Scott's test case is now known as test 539 and it verifies the fix. | |||
2008-07-07 | New options added to OS400 wrapper and ILERPG definitions. | Patrick Monnerat | |
Wrong defines (typos) for QSSL layer fixed. | |||
2008-07-05 | fix compiler warning: empty body in an if-statement | Yang Tse | |
2008-07-03 | Phil Blundell provided a fix for libcurl's treatment of unexpected 1xx | Daniel Stenberg | |
response codes. Previously libcurl would hang on such occurances. I added test case 1033 to verify. | |||
2008-07-03 | Introcuding a new timestamp for curl_easy_getinfo(): | Daniel Stenberg | |
CURLINFO_APPCONNECT_TIME. This is set with the "application layer" handshake/connection is completed (typically SSL, TLS or SSH). By using this you can figure out the application layer's own connect time. You can extract the time stamp using curl's -w option and the new variable named 'time_appconnect'. This feature was sponsored by Lenny Rachitsky at NeuStar. | |||
2008-07-02 | Support Open Watcom C on Linux (as well as Windows). | Dan Fandrich | |
2008-07-02 | fallback to gettimeofday when monotonic clock is unavailable at run-time | Yang Tse | |
2008-07-01 | CreateConnection collided with a function using the exact same name in the | Daniel Stenberg | |
INTEGRITY RTOS, so I renamed it to create_conn. It then made sense to also rename SetupConnection to setup_conn to match it. | |||
2008-06-30 | - Stephen Collyer and Tor Arntsen helped identify a flaw in the range code | Daniel Stenberg | |
which output the range using a signed variable where it should rather use unsigned. |