2278e8f1 | 12-Jul-2006 |
Yang Tse |
DJGPP/WATT32 does not have functions named recv() send() getnameinfo(). |
58176d14 | 12-Jul-2006 |
Yang Tse |
Use platform's native types for recv() and send() arguments. |
10489879 | 11-Jul-2006 |
Dan Fandrich |
Enable --enable-hidden-symbols for SunPro C |
fe22872d | 11-Jul-2006 |
Yang Tse |
include <malloc.h> only if HAVE_MALLOC_H and NEED_MALLOC_H are both defined. |
4d95d23d | 11-Jul-2006 |
Yang Tse |
Define NEED_MALLOC_H if including <stdlib.h> is not enough for proper compilation and <malloc.h> must also be included. |
c6fc5a1a | 11-Jul-2006 |
Dan Fandrich |
Moved strdup replacement from src/main.c into src/strdup.c so it's available in libcurl as well, if necessary. |
012d7544 | 11-Jul-2006 |
Gisle Vanem |
Added comment and CVS id. |
dcc7900e | 11-Jul-2006 |
Yang Tse |
Socket must be set to CURL_SOCKET_BAD after closing it. |
34f5e8ad | 10-Jul-2006 |
Yang Tse |
DNS cache must use the multi DNS cache if the easy handle's one is not using anyone in curl_multi_add_handle. |
c2fee989 | 08-Jul-2006 |
Daniel Stenberg |
the tool is named curl with lowercase c |
abd983e8 | 08-Jul-2006 |
Daniel Stenberg |
just some more blurb |
28611704 | 08-Jul-2006 |
Daniel Stenberg |
Ates Goral pointed out that libcurl's cookie parser did case insensitive string comparisons on the path which is incorrect and provided a patch that fixes this. I edited test case 8 to includ
Ates Goral pointed out that libcurl's cookie parser did case insensitive 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.
show more ...
|
305dddea | 08-Jul-2006 |
Daniel Stenberg |
7.15.5 is planned for August 2006 |
ee8112b4 | 07-Jul-2006 |
Daniel Stenberg |
mention the shared DNS stuff |
ca319f63 | 07-Jul-2006 |
Daniel Stenberg |
Ingmar Runge provided a source snippet that caused a crash. The reason for the crash was that libcurl internally was a bit confused about who owned the DNS cache at all times so if you create
Ingmar Runge provided a source snippet that caused a crash. The reason for 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).
show more ...
|
a09a8164 | 07-Jul-2006 |
Daniel Stenberg |
mention the by-default "sharing" |
e5cf6a20 | 07-Jul-2006 |
Daniel Stenberg |
yassl can be used now |
af5e6e7e | 07-Jul-2006 |
Daniel Stenberg |
HTTP Pipelining is for GET and HEAD requests only. |
70f2b5e8 | 07-Jul-2006 |
Dan Fandrich |
Fixed building curllib.dsp when running make outside the source tree. |
8ef454dc | 07-Jul-2006 |
Yang Tse |
Finally get rid of CURL_CHECK_HEADERS_ONCE since it adds very little value and has portability issues. Change some shell if...then...fi tests into case...esac tests which demand less resourc
Finally get rid of CURL_CHECK_HEADERS_ONCE since it adds very little value and has portability issues. Change some shell if...then...fi tests into case...esac tests which demand less resources.
show more ...
|
551a0412 | 07-Jul-2006 |
Yang Tse |
Substitution of the literal '-' is only done if it's the first or last character. |
03288943 | 07-Jul-2006 |
Yang Tse |
Using backslashes and slashes in the strings of the sed 'y' command shall be avoided since its interpretation is not the same across platforms. Now we use the sed 's' command with a bracket
Using backslashes and slashes in the strings of the sed 'y' command shall be avoided since its interpretation is not the same across platforms. Now we use the sed 's' command with a bracket expression.
show more ...
|
725f734b | 07-Jul-2006 |
Gisle Vanem |
Correct the trace for WinCE. |
0f324606 | 07-Jul-2006 |
Gisle Vanem |
WinCE uses CreateThread(). Hence error is not in 'errno'. |
25180cc8 | 07-Jul-2006 |
Gisle Vanem |
Removed copying 'stderr' since it doesn't have the desired effect. |