055022a5 | 10-Sep-2006 |
Yang Tse |
Compiler warning fix |
c30e9080 | 10-Sep-2006 |
Yang Tse |
Compiler warning fix |
8d24c021 | 10-Sep-2006 |
Daniel Stenberg |
curl_multi_socket() fix thanks to Jeff's test code |
8240cea6 | 10-Sep-2006 |
Daniel Stenberg |
Jeff Pohlmeyer presented a *multi_socket()-using program that exposed a problem with it (SIGSEGV-style). It clearly showed that the existing socket-state and state-difference function was
Jeff Pohlmeyer presented a *multi_socket()-using program that exposed a problem with it (SIGSEGV-style). It clearly showed that the existing socket-state and state-difference function wasn't good enough so I rewrote it and could then re-run Jeff's program without any crash. The previous version clearly could miss to tell the application when a handle changed from using one socket to using another. While I was at it (as I could use this as a means to track this problem down), I've now added a 'magic' number to the easy handle struct that is inited at curl_easy_init() time and cleared at curl_easy_cleanup() time that we can use internally to detect that an easy handle seems to be fine, or at least not closed or freed (freeing in debug builds fill the area with 0x13 bytes but in normal builds we can of course not assume any particular data in the freed areas).
show more ...
|
f2a33eb3 | 10-Sep-2006 |
Daniel Stenberg |
Added a useful debug function within #if 0. The function makes it easy to "dump" a hash table which is useful when tracking problems with data stored in one of our hashes. |
e134a402 | 10-Sep-2006 |
Gisle Vanem |
Added select_test() function to allow selecting on no sockets on Winsock. |
690888cf | 09-Sep-2006 |
Gisle Vanem |
SIGALARM -> SIGALRM. |
fb8d9b66 | 09-Sep-2006 |
Gisle Vanem |
#ifdef around alarmfunc() to supress warning. |
f7ddb39e | 09-Sep-2006 |
Gisle Vanem |
iconv-data needs to be fully reallocated (to prevent a double-free). |
145084b6 | 09-Sep-2006 |
Gisle Vanem |
Print usage in case 'arg2 == NULL'. |
f1ba1260 | 09-Sep-2006 |
Gisle Vanem |
Duplicate iconv-data too in curl_easy_duphandle(). |
bb87b65f | 09-Sep-2006 |
Yang Tse |
Compiler warning fix |
b0f6e7ce | 09-Sep-2006 |
Daniel Stenberg |
Michele Bini fixed how the hostname is put in NTLM packages. As servers don't expect fully qualified names we need to cut them off at the first dot. |
ed72d4e1 | 09-Sep-2006 |
Daniel Stenberg |
tab => space |
8ec1bfe8 | 08-Sep-2006 |
Daniel Stenberg |
Peter Sylvester cleaned up and fixed the getsockname() uses in ftp.c. Some of them can be completetly removed though... |
1dec1756 | 08-Sep-2006 |
Gisle Vanem |
signal() returns 'void (*)(int)'. |
9cc3795f | 08-Sep-2006 |
Daniel Stenberg |
Mention that CURLOPT_MAX_RECV/SEND* were added in 7.15.5 |
be1306a6 | 08-Sep-2006 |
Gisle Vanem |
Update comment reflecting structure change. |
e9160a31 | 08-Sep-2006 |
Daniel Stenberg |
removed the comment that isn't valid for this file, just a copy'n paste error |
0a670c57 | 08-Sep-2006 |
Gisle Vanem |
Compilation fix; 'reqdata' is not a pointer. 'path' is part of SessionHandle. |
e3c15fc4 | 08-Sep-2006 |
Daniel Stenberg |
test 530 is the first ever HTTP pipelining test for libcurl |
dc7c9155 | 08-Sep-2006 |
Yang Tse |
Compilation fix |
b7eeb6e6 | 07-Sep-2006 |
Daniel Stenberg |
Major overhaul introducing http pipelining support and shared connection cache within the multi handle. |
7e4193b5 | 07-Sep-2006 |
Yang Tse |
Fix compiler warning |
a932803e | 06-Sep-2006 |
Daniel Stenberg |
Invoke memanalyze from the source path and hush up about killing the FTP server as part of test cases |