5df4be11 | 18-Oct-2006 |
Yang Tse |
Check for USE_WINSOCK instead of WIN32 where the check was done to verify winsock API availability. |
96445f1b | 18-Oct-2006 |
Yang Tse |
Introduce symbol USE_WINSOCK which will be defined when using winsock or winsock2 API. |
4bdd7596 | 18-Oct-2006 |
Daniel Stenberg |
the expire timer is a bit too annoying to see all the time ;-) |
18aae320 | 18-Oct-2006 |
Daniel Stenberg |
When a connection is re-used, it can be flagged for re-use before the name resolving is completed so we must make sure to survive it and mark the connection as async (ie not yet connected com
When a connection is re-used, it can be flagged for re-use before the name resolving is completed so we must make sure to survive it and mark the connection as async (ie not yet connected completely).
show more ...
|
a8996b9e | 18-Oct-2006 |
Daniel Stenberg |
use the return code from lseek() to detect problems and bail out if so |
94095c61 | 18-Oct-2006 |
Gisle Vanem |
Added ISPRINT() required for src/main.c. |
1cddd744 | 18-Oct-2006 |
Daniel Stenberg |
Tor's spell fixes |
786738dd | 18-Oct-2006 |
Daniel Stenberg |
changes done the last few days |
5b8d5fdf | 18-Oct-2006 |
Daniel Stenberg |
cut out matching host names starting with telnet or ftps, since they hardly ever actually are used |
694f31ca | 18-Oct-2006 |
Daniel Stenberg |
the "work in progress" for #25 was ditched a long time ago |
9c1ad0f9 | 18-Oct-2006 |
Yang Tse |
Replace is*() macros with our own IS*() ones. Get rid of non ANSI/ISO isascii(). |
71c63352 | 18-Oct-2006 |
Yang Tse |
Move definition of IS*() macros to setup_once.h |
8c38ea4e | 17-Oct-2006 |
Dan Fandrich |
Fixed compile error in HAVE_SIGACTION case. |
44d84ac1 | 17-Oct-2006 |
Daniel Stenberg |
Avoid typecasting a signed char to an int when using is*() functions, as that could very well cause a negate number get passed in and thus cause reading outside of the array usually used for
Avoid typecasting a signed char to an int when using is*() functions, as that could very well cause a negate number get passed in and thus cause reading outside of the array usually used for this purpose. We avoid this by using the uppercase macro versions introduced just now that does some extra crazy typecasts to avoid byte codes > 127 to cause negative int values.
show more ...
|
930f9bd5 | 17-Oct-2006 |
Daniel Stenberg |
clear the struct size not the pointer size, pointed out in bug report #1579171 |
b61fbbde | 17-Oct-2006 |
Daniel Stenberg |
buildconf already runs ares/buildconf by itself if there is an ares subdir present, so there's no use to doing it again in this script! |
ec956b03 | 17-Oct-2006 |
Yang Tse |
Explicit typecast for Curl_debug() size argument |
44ffe0dc | 17-Oct-2006 |
Yang Tse |
Typo |
e3a61fba | 17-Oct-2006 |
Daniel Stenberg |
make the low_speed check set the expire timer so that it has a chance to work even when using curl_multi_socket() or even using the multi_perform() when relying on multi_timeout() to be good. |
65794f60 | 17-Oct-2006 |
Daniel Stenberg |
Please welcome our new haxx.se curl mirror, for really fast Swedish access. |
7a710b49 | 17-Oct-2006 |
Daniel Stenberg |
Jeff helped me pinpoint that we didn't properly set the expire timer during c-ares name resolves, but now we do! |
0bb20cc6 | 17-Oct-2006 |
Daniel Stenberg |
fix the name resolve abort timeout calculation (when signals are used) |
433c0c89 | 17-Oct-2006 |
Yang Tse |
Compiler warning fix |
67e8d229 | 16-Oct-2006 |
Daniel Stenberg |
Added a check in configure that simply tries to run a program (not when cross-compiling) in order to detect problems with run-time libraries that otherwise would occur when the sizeof tests f
Added a check in configure that simply tries to run a program (not when cross-compiling) in order to detect problems with run-time libraries that otherwise would occur when the sizeof tests for curl_off_t would run and thus be much more confusing to users. The check of course should run after all lib-checks are done and before any other test is used that would run an executable built for testing-purposes.
show more ...
|
10d1fc0e | 15-Oct-2006 |
Yang Tse |
Compiler warning fix |