Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-07-12 | Place parenthesis surrounding macro parameters so that the use of sread and ↵ | Yang Tse | |
swrite is more intuitive. | |||
2006-07-12 | sread now returns ssize_t | Yang Tse | |
2006-07-12 | Pay attention when typecasting an operation | Yang Tse | |
2006-07-12 | sread now returns ssize_t | Yang Tse | |
2006-07-12 | DJGPP/WATT32 does not have functions named recv() send() getnameinfo(). | Yang Tse | |
2006-07-12 | Use platform's native types for recv() and send() arguments. | Yang Tse | |
2006-07-11 | Enable --enable-hidden-symbols for SunPro C | Dan Fandrich | |
2006-07-11 | include <malloc.h> only if HAVE_MALLOC_H and NEED_MALLOC_H are both defined. | Yang Tse | |
2006-07-11 | Define NEED_MALLOC_H if including <stdlib.h> is not enough for proper ↵ | Yang Tse | |
compilation and <malloc.h> must also be included. | |||
2006-07-11 | Moved strdup replacement from src/main.c into src/strdup.c so it's available | Dan Fandrich | |
in libcurl as well, if necessary. | |||
2006-07-11 | Added comment and CVS id. | Gisle Vanem | |
2006-07-11 | Socket must be set to CURL_SOCKET_BAD after closing it. | Yang Tse | |
2006-07-10 | DNS cache must use the multi DNS cache if the easy handle's one is not using ↵ | Yang Tse | |
anyone in curl_multi_add_handle. | |||
2006-07-08 | the tool is named curl with lowercase c | Daniel Stenberg | |
2006-07-08 | just some more blurb | Daniel Stenberg | |
2006-07-08 | Ates Goral pointed out that libcurl's cookie parser did case insensitive | Daniel Stenberg | |
string comparisons on the path which is incorrect and provided a patch that fixes this. I edited test case 8 to include details that test for this. | |||
2006-07-08 | 7.15.5 is planned for August 2006 | Daniel Stenberg | |
2006-07-07 | mention the shared DNS stuff | Daniel Stenberg | |
2006-07-07 | Ingmar Runge provided a source snippet that caused a crash. The reason for | Daniel Stenberg | |
the crash was that libcurl internally was a bit confused about who owned the DNS cache at all times so if you created an easy handle that uses a shared DNS cache and added that to a multi handle it would crash. Now we keep more careful internal track of exactly what kind of DNS cache each easy handle uses: None, Private (allocated for and used only by this single handle), Shared (points to a cache held by a shared object), Global (points to the global cache) or Multi (points to the cache within the multi handle that is automatically shared between all easy handles that are added with private caches). | |||
2006-07-07 | mention the by-default "sharing" | Daniel Stenberg | |
2006-07-07 | yassl can be used now | Daniel Stenberg | |
2006-07-07 | HTTP Pipelining is for GET and HEAD requests only. | Daniel Stenberg | |
2006-07-07 | Fixed building curllib.dsp when running make outside the source tree. | Dan Fandrich | |
2006-07-07 | Finally get rid of CURL_CHECK_HEADERS_ONCE since it adds very little value ↵ | Yang Tse | |
and has portability issues. Change some shell if...then...fi tests into case...esac tests which demand less resources. | |||
2006-07-07 | Substitution of the literal '-' is only done if it's the first or last ↵ | Yang Tse | |
character. | |||
2006-07-07 | Using backslashes and slashes in the strings of the sed 'y' command shall be ↵ | Yang Tse | |
avoided since its interpretation is not the same across platforms. Now we use the sed 's' command with a bracket expression. | |||
2006-07-07 | Correct the trace for WinCE. | Gisle Vanem | |
2006-07-07 | WinCE uses CreateThread(). Hence error is not in 'errno'. | Gisle Vanem | |
2006-07-07 | Removed copying 'stderr' since it doesn't have the desired | Gisle Vanem | |
effect. | |||
2006-07-07 | updated after discussions and thinking | Daniel Stenberg | |
2006-07-07 | Fix excessive escaping. | Yang Tse | |
2006-07-07 | Fix CURL_CHECK_HEADERS_ONCE | Yang Tse | |
2006-07-06 | Fix MinGW/MSYS support in CURL_CHECK_FUNC_RECV and CURL_CHECK_FUNC_SEND. | Yang Tse | |
2006-07-06 | Undefine symbols before redefining them. | Gisle Vanem | |
2006-07-06 | Undefine correct symbol. | Gisle Vanem | |
2006-07-05 | Oops ! | Yang Tse | |
2006-07-05 | Prevent definition of HAVE_WINxxx_H symbols and avoid inclusion of Windows ↵ | Yang Tse | |
headers when compiled with Cygwin in POSIX emulation mode. | |||
2006-07-05 | Cludge fix for djgpp 2.03 or older; it doesn't have snprintf() etc. | Gisle Vanem | |
So avoid using x_was_used(). | |||
2006-07-05 | Add types and qualifiers for getnameifo(), send() and recv(). | Gisle Vanem | |
(Yang Tse forgot about djgpp) | |||
2006-07-04 | Use a more descriptive var name. | Yang Tse | |
2006-07-04 | Get qualifier of arg 2 for send() apart into SEND_QUAL_ARG2. | Yang Tse | |
2006-07-04 | Platforms that don't have/run configure need default values in their config ↵ | Yang Tse | |
files for: HAVE_GETNAMEINFO, GETNAMEINFO_QUAL_ARG1, GETNAMEINFO_TYPE_ARG1, GETNAMEINFO_TYPE_ARG2, GETNAMEINFO_TYPE_ARG46, GETNAMEINFO_TYPE_ARG7 HAVE_RECV, RECV_TYPE_ARG1, RECV_TYPE_ARG2, RECV_TYPE_ARG3, RECV_TYPE_ARG4, RECV_TYPE_RETV HAVE_SEND, SEND_TYPE_ARG1, SEND_TYPE_ARG2, SEND_TYPE_ARG3, SEND_TYPE_ARG4, SEND_TYPE_RETV | |||
2006-07-04 | Find out return types and argument types for functions recv() and send() at ↵ | Yang Tse | |
configuration stage. | |||
2006-07-04 | Toshiyuki Maezawa fixed a problem where you couldn't override the | Daniel Stenberg | |
Proxy-Connection: header when using a proxy and not doing CONNECT. | |||
2006-07-04 | Test HAVE_GETNAMEINFO definition before using GETNAMEINFO_XXX definitions. | Yang Tse | |
2006-07-03 | Fix compiler warning. | Yang Tse | |
2006-07-03 | Use CURL_CHECK_FUNC_GETNAMEINFO results in CURL_CHECK_NI_WITHSCOPEID | Yang Tse | |
2006-07-02 | Make CURL_CHECK_NI_WITHSCOPEID actually try to compile NI_WITHSCOPEID when ↵ | Yang Tse | |
cross-compiling. | |||
2006-07-02 | Fix shell globbing in CURL_CHECK_FUNC_GETNAMEINFO | Yang Tse | |
2006-07-02 | Fix shell globbing in CURL_CHECK_FUNC_GETNAMEINFO | Yang Tse | |