aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-07-14David McCreedy fixed a flaw where the CRLF counter wasn't properly clearedDaniel Stenberg
for FTP ASCII transfers.
2006-07-14Fix compiler warningYang Tse
2006-07-14Change the ai_addrlen type of struct addrinfo from size_t to socklen_t, per ↵Yang Tse
RFC 3493.
2006-07-14Null terminate string in buffer before feeding it to strtol()Yang Tse
2006-07-13Oops, missing "u"Yang Tse
2006-07-13Change to meaningful var names and take care of a compiler warning on IRIX ↵Yang Tse
6.5.22 MIPSPro C 7.3 64bit
2006-07-13Fix compiler warning.Yang Tse
2006-07-12Remove unneeded stuff.Gisle Vanem
2006-07-12Remove var not used.Yang Tse
2006-07-12Log a message if not all data is sent.Yang Tse
2006-07-12Fix compiler warning: comparison between signed and unsignedYang Tse
2006-07-12Read the return value of the swrite() macro and 'print' a message in case of ↵Yang Tse
failure.
2006-07-12Place parenthesis surrounding macro parameters so that the use of sread and ↵Yang Tse
swrite is more intuitive.
2006-07-12sread now returns ssize_tYang Tse
2006-07-12Pay attention when typecasting an operationYang Tse
2006-07-12sread now returns ssize_tYang Tse
2006-07-12DJGPP/WATT32 does not have functions named recv() send() getnameinfo().Yang Tse
2006-07-12Use platform's native types for recv() and send() arguments.Yang Tse
2006-07-11Enable --enable-hidden-symbols for SunPro CDan Fandrich
2006-07-11include <malloc.h> only if HAVE_MALLOC_H and NEED_MALLOC_H are both defined.Yang Tse
2006-07-11Define NEED_MALLOC_H if including <stdlib.h> is not enough for proper ↵Yang Tse
compilation and <malloc.h> must also be included.
2006-07-11Moved strdup replacement from src/main.c into src/strdup.c so it's availableDan Fandrich
in libcurl as well, if necessary.
2006-07-11Added comment and CVS id.Gisle Vanem
2006-07-11Socket must be set to CURL_SOCKET_BAD after closing it.Yang Tse
2006-07-10DNS 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-08the tool is named curl with lowercase cDaniel Stenberg
2006-07-08just some more blurbDaniel Stenberg
2006-07-08Ates Goral pointed out that libcurl's cookie parser did case insensitiveDaniel 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-087.15.5 is planned for August 2006Daniel Stenberg
2006-07-07mention the shared DNS stuffDaniel Stenberg
2006-07-07Ingmar Runge provided a source snippet that caused a crash. The reason forDaniel 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-07mention the by-default "sharing"Daniel Stenberg
2006-07-07yassl can be used nowDaniel Stenberg
2006-07-07HTTP Pipelining is for GET and HEAD requests only.Daniel Stenberg
2006-07-07Fixed building curllib.dsp when running make outside the source tree.Dan Fandrich
2006-07-07Finally 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-07Substitution of the literal '-' is only done if it's the first or last ↵Yang Tse
character.
2006-07-07Using 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-07Correct the trace for WinCE.Gisle Vanem
2006-07-07WinCE uses CreateThread(). Hence error is not in 'errno'.Gisle Vanem
2006-07-07Removed copying 'stderr' since it doesn't have the desiredGisle Vanem
effect.
2006-07-07updated after discussions and thinkingDaniel Stenberg
2006-07-07Fix excessive escaping.Yang Tse
2006-07-07Fix CURL_CHECK_HEADERS_ONCEYang Tse
2006-07-06Fix MinGW/MSYS support in CURL_CHECK_FUNC_RECV and CURL_CHECK_FUNC_SEND.Yang Tse
2006-07-06Undefine symbols before redefining them.Gisle Vanem
2006-07-06Undefine correct symbol.Gisle Vanem
2006-07-05Oops !Yang Tse
2006-07-05Prevent definition of HAVE_WINxxx_H symbols and avoid inclusion of Windows ↵Yang Tse
headers when compiled with Cygwin in POSIX emulation mode.
2006-07-05Cludge fix for djgpp 2.03 or older; it doesn't have snprintf() etc.Gisle Vanem
So avoid using x_was_used().