Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-05-14 | Improve toolchain detection for WinCE cross compilation: | Yang Tse | |
When cross compiling WinCE with the arm-wince-cegcc-gcc C compiler symbol __CEGCC__ is defined and the unix-like compatibility layer is used. For our purposes this is not a native Windows build. When cross compiling WinCE with the arm-wince-mingw32ce-gcc C compiler symbol __MINGW32CE__ is defined and the unix-like compatibility layer is not used. For our purposes this _is_ a native Windows build. | |||
2008-05-14 | remove duplicate check | Yang Tse | |
2008-05-14 | skip checks for Windows specific header files | Yang Tse | |
when build target is not a native Windows one | |||
2008-05-14 | WinCE cross compilation adjustments: | Yang Tse | |
HAVE_WINSOCK2_H shall not be defined. HAVE_WS2TCPIP_H shall not be defined. | |||
2008-05-13 | wait for all 129 bytes | Daniel Stenberg | |
2008-05-13 | Added test case 556 that uses curl_easy_send() and curl_easy_recv() | Daniel Stenberg | |
2008-05-13 | Three out of the four issues are now extinct. | Daniel Stenberg | |
2008-05-13 | - Introducing millisecond resolution support for the timeout option. See | Daniel Stenberg | |
ares_init_options()'s ARES_OPT_TIMEOUTMS. | |||
2008-05-13 | also ignore this | Yang Tse | |
2008-05-13 | Added curl_easy_recv & curl_easy_send Symbian exports. | Dan Fandrich | |
Cleaned up Symbian files. | |||
2008-05-13 | also ignore this | Yang Tse | |
2008-05-13 | ignore this compilation time generated files | Yang Tse | |
2008-05-13 | don't keep in CVS this compilation time generated file | Yang Tse | |
2008-05-13 | add MSVC6 project for acountry sample program | Yang Tse | |
2008-05-13 | update MSVC6 projects to use the multithreaded DLL runtime library | Yang Tse | |
2008-05-13 | add MSVC6 project for acountry sample program | Yang Tse | |
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-12 | skip libtool C++ preprocessor compiler and linker checks | Yang Tse | |
2008-05-12 | ignore libcares.pc | Yang Tse | |
2008-05-12 | configure script will now define HAVE_CLOCK_GETTIME_MONOTONIC symbol only | Yang Tse | |
when function clock_gettime() is available and the monotonic timer is also available. Otherwise, in some cases, librt or libposix4 could be used for linking even when finally not using the clock_gettime() function due to lack of the monotonic clock. | |||
2008-05-10 | fix syntax error: missing semicolon | Yang Tse | |
2008-05-10 | Add library checking for clock_gettime() support | Yang Tse | |
2008-05-09 | Internal time differences now use monotonic time source if available. | Yang Tse | |
This also implies the removal of the winmm.lib dependency for WIN32. | |||
2008-05-09 | Use monotonic time source if available. | Yang Tse | |
2008-05-09 | Removed AC_PROG_CC_STDC again. It enforces C99/gnu99 stdandard which is too | Daniel Stenberg | |
liberal for me. Also, autoconf 2.61 and earlier doesn't work with icc 10.1 for this macro. (2.62 confirmed to work though). See discusson on the mailing list starting here: http://daniel.haxx.se/projects/c-ares/mail/c-ares-archive-2008-05/0001.shtml | |||
2008-05-09 | - Stefan Krause reported a busy-looping case when using the multi interface | Daniel Stenberg | |
and doing CONNECT to a proxy. The app would then busy-loop until the proxy completed its response. | |||
2008-05-09 | Removed an unused variable and one do-while loop that wasn't used either. | Daniel Stenberg | |
Added a few comments while at it. | |||
2008-05-09 | - Make Curl_write and it's callees accept a const pointer, in preparation | Michal Marek | |
of tetetest's patch for curl_easy_send() | |||
2008-05-08 | include strings.h (if available) for the strcasecmp() proto | Daniel Stenberg | |
2008-05-08 | check for strings.h in configure and use it for the strcasecmp() proto | Daniel Stenberg | |
2008-05-08 | fix compiler warning: format '%ld' expects type 'long int' | Yang Tse | |
2008-05-07 | adjusted to work with the updated configure.ac | Daniel Stenberg | |
2008-05-07 | - Sebastian made c-ares able to return all PTR-records when doing reverse | Daniel Stenberg | |
lookups. It is not common practice to have multiple PTR-Records for a single IP, but its perfectly legal and some sites have those. | |||
2008-05-07 | - Doug Goldstein provided a configure patch: updates autoconf 2.13 usage to | Daniel Stenberg | |
autoconf 2.57 usage (which is the version you have specified as the minimum version). It's a minor change but it does clean up some warnings with newer autoconf (specifically 2.62). | |||
2008-05-07 | -135 - Busy looping bug in multi_socket interface by | Daniel Stenberg | |
- Christopher Palow | |||
2008-05-07 | - Liam Healy filed the debian bug report #480044 | Daniel Stenberg | |
(http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=480044) identifying a segfault when using krb5 ftp, but the krb4 code had the same problem. | |||
2008-05-07 | Christopher Palow provided the patch (edited by me) that introduces | Yang Tse | |
the use of microsecond resolution keys for internal splay trees. http://curl.haxx.se/mail/lib-2008-04/0513.html | |||
2008-05-06 | fix compiler warning: enumerated type mixed with another type | Yang Tse | |
2008-05-05 | mention four outstanding issues we should deal with before release | Daniel Stenberg | |
2008-05-05 | Improved parsing of resolver configuration files | Yang Tse | |
2008-05-03 | - Yuriy Sosov pointed out a configure fix for detecting c-ares when that is | Daniel Stenberg | |
built debug-enabled. | |||
2008-05-03 | minor spell and language fix of a comment | Daniel Stenberg | |
2008-05-03 | - Ben Van Hof filed bug report #1945240: "libcurl sometimes sends body twice | Daniel Stenberg | |
when using CURL_AUTH_ANY" (http://curl.haxx.se/bug/view.cgi?id=1945240). The problem was that when libcurl rewound a stream meant for upload when it would prepare for a second request, it could accidentally continue the sending of the rewound data on the first request instead of on the second. Ben also provided test case 1030 that verifies this fix. | |||
2008-05-03 | Added comments, check Curl_http_auth_act()'s return code and added a check | Daniel Stenberg | |
that closes the connection somewhat faster when perhapsrewind() has marked the connection for closure. | |||
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-05-01 | 53. SFTP busy-loop problem when doing SFTP uploads. | Daniel Stenberg | |
2008-05-01 | Document that variable replacement now takes place in the test file <stdout> ↵ | Dan Fandrich | |
section. | |||
2008-05-01 | use variables to support other IPs and port numbers | Daniel Stenberg | |
2008-05-01 | do variable replacement in the stdout data read from the test case | Daniel Stenberg | |