Age | Commit message (Expand) | Author |
2004-05-25 | initial support for "uploading" to file:// URLs | Daniel Stenberg |
2004-05-17 | I made Curl_done() take a pointer-pointer in the first argument instead, and | Daniel Stenberg |
2004-05-17 | fixed a warning on IRIX, deleted trailing whitespace | Daniel Stenberg |
2004-05-12 | Curl_done() and the protocol-specific conn->curl_done() functions now all | Daniel Stenberg |
2004-05-12 | even if Curl_do() fails, we must call Curl_done() to do proper cleaning up | Daniel Stenberg |
2004-05-12 | use size_t better for buffer and alloc lengths | Daniel Stenberg |
2004-05-11 | minor leak in case of error, thanks to "./runtests.pl -n -t 25" | Daniel Stenberg |
2004-05-11 | curl_global_init_mem() allows the memory functions to be replaced. | Daniel Stenberg |
2004-05-05 | prevent warnings when using the gcc option -Wunreachable-code | Daniel Stenberg |
2004-05-04 | General HTTP authentication cleanup and fixes | Daniel Stenberg |
2004-04-27 | Made host name and proxy name get stored in a 'struct hostname' and set | Daniel Stenberg |
2004-04-26 | no longer include curl/types.h, it serves no purpose | Daniel Stenberg |
2004-04-26 | added many comments | Daniel Stenberg |
2004-04-22 | - David Byron found and fixed a small bug with the --fail and authentication | Daniel Stenberg |
2004-04-21 | Fix the "lingering close" problem when re-using a connection, as test case | Daniel Stenberg |
2004-04-20 | Cleaned up hostname/name/gname and path/ppath confusion. Removed the fixed- | Daniel Stenberg |
2004-04-13 | remove an long time #defined struct member and use the actual "real" name | Daniel Stenberg |
2004-04-07 | getting only a 100 Continue response and nothing else, when talking HTTP, | Daniel Stenberg |
2004-04-07 | renamed the strtoofft() macro to curlx_strtoofft() to adjust to the curlx_* | Daniel Stenberg |
2004-04-06 | New authentication code added, particularly noticable when doing POST or PUT | Daniel Stenberg |
2004-03-30 | David Byron made CURLOPT_FAILONERROR work with authentications such as NTLM | Daniel Stenberg |
2004-03-22 | Makes CURLINFO_CONTENT_LENGTH_DOWNLOAD work even if CURLOPT_NOBODY is set | Daniel Stenberg |
2004-03-16 | removed the min() macro define | Daniel Stenberg |
2004-03-11 | Gisle Vanem's fixes to use CURL_SOCKET_BAD more instead of -1 for sockets. | Daniel Stenberg |
2004-03-10 | Use more curl_off_t variables when doing the progress meter calculations and | Daniel Stenberg |
2004-03-10 | curl_socket_t mistakes cleanup | Daniel Stenberg |
2004-03-09 | Use curl_socket_t instead of int for holding sockets. The typedefs and | Daniel Stenberg |
2004-03-05 | more fixing to make the progress/getinfo stuff to work properly when doing | Daniel Stenberg |
2004-03-02 | Yet another curl_off_t printf format attempt, we now exclude the %-letter from | Daniel Stenberg |
2004-03-02 | use FORMAT_OFF_T instead of CURL_FORMAT_OFF_T to reduce the complexity of | Daniel Stenberg |
2004-03-01 | Now uses CURL_FORMAT_OFF_T instead of %Od | Daniel Stenberg |
2004-02-20 | we call the macro CURLMAX() isntead of MAX(), just because it turned up | Daniel Stenberg |
2004-02-18 | removed some "jhrg" from comments | Daniel Stenberg |
2004-02-15 | CURLcode/int cleanup to reduce IRIX warnings | Daniel Stenberg |
2004-02-13 | Greg Hewgill found out 'contentlength' wasn't big enough to hold a large file! | Daniel Stenberg |
2004-02-06 | The MIPSPro compiler complains on constructs such as "(void)foo;" so | Daniel Stenberg |
2004-02-02 | set the 'retry' bit to TRUE when the connection is about to be retried, | Daniel Stenberg |
2004-01-30 | make sure the connection is closed when it was detected reset! | Daniel Stenberg |
2004-01-30 | Somewhat crude attempt at fixing the test 91 failures. I commit this now | Daniel Stenberg |
2004-01-28 | Chunked-transfers should have an additional CRLF after the final 0 CRLF | Daniel Stenberg |
2004-01-22 | use curl_off_t instead of off_t! | Daniel Stenberg |
2004-01-21 | use the proper timecond defines, not the obsolete ones! | Daniel Stenberg |
2004-01-07 | updated year in the copyright string | Daniel Stenberg |
2004-01-05 | David J Meyer's large file support. | Daniel Stenberg |
2003-12-18 | redirect from a bad url such as "www.com?moo=foo" to an absolute path didn't | Daniel Stenberg |
2003-12-10 | assert that we get a good index to Curl_transfer() | Daniel Stenberg |
2003-12-03 | Ignore content-length when chunked transfer-encoding is transfered. | Daniel Stenberg |
2003-12-02 | fix compiler warnings | Daniel Stenberg |
2003-12-02 | If HAVE_MSG_NOSIGNAL is set, we use MSG_NOSIGNAL when we call send() and | Daniel Stenberg |
2003-11-24 | FTPS support added as RFC2228 and the murray-ftp-auth-ssl draft describe it | Daniel Stenberg |