summaryrefslogtreecommitdiff
path: root/lib/transfer.c
Commit message (Expand)AuthorAgeFilesLines
* more typecasts to please picky compilersDaniel Stenberg2004-08-101-2/+4
* typecast the assigment of an unsigned variable to a signed one to preventDaniel Stenberg2004-08-091-1/+1
* ->fread() should get a size_t variable passed inDaniel Stenberg2004-08-091-1/+1
* deal with negative Content-Length: headers by ignoring the infoDaniel Stenberg2004-07-161-7/+16
* Variable type cleanups to please the picky MIPSPro compiler.Daniel Stenberg2004-07-011-5/+5
* Source cleanups. The major one being that we now _always_ use a Curl_addrinfoDaniel Stenberg2004-06-241-7/+0
* pass an int pointer when it expects an int pointer...Daniel Stenberg2004-06-221-3/+8
* The read callback can now return CURL_READFUNC_ABORT to stop a transfer.Daniel Stenberg2004-06-211-3/+14
* Alexander Krasnostavsky fixed a flaw in the 3rd party transfer code thatDaniel Stenberg2004-06-161-2/+4
* Alexander Krasnostavsky's fix to make libcurl build fine with configureDaniel Stenberg2004-06-091-2/+12
* Alexander Krasnostavsky's FTP third party transfer (proxy) supportDaniel Stenberg2004-06-031-38/+92
* initial support for "uploading" to file:// URLsDaniel Stenberg2004-05-251-3/+2
* I made Curl_done() take a pointer-pointer in the first argument instead, andDaniel Stenberg2004-05-171-3/+3
* fixed a warning on IRIX, deleted trailing whitespaceDaniel Stenberg2004-05-171-63/+63
* Curl_done() and the protocol-specific conn->curl_done() functions now allDaniel Stenberg2004-05-121-3/+5
* even if Curl_do() fails, we must call Curl_done() to do proper cleaning upDaniel Stenberg2004-05-121-0/+3
* use size_t better for buffer and alloc lengthsDaniel Stenberg2004-05-121-6/+6
* minor leak in case of error, thanks to "./runtests.pl -n -t 25"Daniel Stenberg2004-05-111-1/+3
* curl_global_init_mem() allows the memory functions to be replaced.Daniel Stenberg2004-05-111-2/+1
* prevent warnings when using the gcc option -Wunreachable-codeDaniel Stenberg2004-05-051-19/+20
* General HTTP authentication cleanup and fixesDaniel Stenberg2004-05-041-26/+24
* Made host name and proxy name get stored in a 'struct hostname' and setDaniel Stenberg2004-04-271-1/+1
* no longer include curl/types.h, it serves no purposeDaniel Stenberg2004-04-261-1/+0
* added many commentsDaniel Stenberg2004-04-261-1/+43
* - David Byron found and fixed a small bug with the --fail and authenticationDaniel Stenberg2004-04-221-0/+1
* Fix the "lingering close" problem when re-using a connection, as test caseDaniel Stenberg2004-04-211-8/+7
* Cleaned up hostname/name/gname and path/ppath confusion. Removed the fixed-Daniel Stenberg2004-04-201-2/+2
* remove an long time #defined struct member and use the actual "real" nameDaniel Stenberg2004-04-131-2/+2
* getting only a 100 Continue response and nothing else, when talking HTTP,Daniel Stenberg2004-04-071-0/+3
* renamed the strtoofft() macro to curlx_strtoofft() to adjust to the curlx_*Daniel Stenberg2004-04-071-2/+2
* New authentication code added, particularly noticable when doing POST or PUTDaniel Stenberg2004-04-061-11/+10
* David Byron made CURLOPT_FAILONERROR work with authentications such as NTLMDaniel Stenberg2004-03-301-2/+24
* Makes CURLINFO_CONTENT_LENGTH_DOWNLOAD work even if CURLOPT_NOBODY is setDaniel Stenberg2004-03-221-4/+8
* removed the min() macro defineDaniel Stenberg2004-03-161-4/+0
* Gisle Vanem's fixes to use CURL_SOCKET_BAD more instead of -1 for sockets.Daniel Stenberg2004-03-111-5/+5
* Use more curl_off_t variables when doing the progress meter calculations andDaniel Stenberg2004-03-101-3/+3
* curl_socket_t mistakes cleanupDaniel Stenberg2004-03-101-1/+4
* Use curl_socket_t instead of int for holding sockets. The typedefs andDaniel Stenberg2004-03-091-3/+5
* more fixing to make the progress/getinfo stuff to work properly when doingDaniel Stenberg2004-03-051-2/+5
* Yet another curl_off_t printf format attempt, we now exclude the %-letter fromDaniel Stenberg2004-03-021-3/+3
* use FORMAT_OFF_T instead of CURL_FORMAT_OFF_T to reduce the complexity ofDaniel Stenberg2004-03-021-3/+3
* Now uses CURL_FORMAT_OFF_T instead of %OdDaniel Stenberg2004-03-011-17/+27
* we call the macro CURLMAX() isntead of MAX(), just because it turned upDaniel Stenberg2004-02-201-4/+4
* removed some "jhrg" from commentsDaniel Stenberg2004-02-181-4/+3
* CURLcode/int cleanup to reduce IRIX warningsDaniel Stenberg2004-02-151-7/+11
* Greg Hewgill found out 'contentlength' wasn't big enough to hold a large file!Daniel Stenberg2004-02-131-1/+1
* The MIPSPro compiler complains on constructs such as "(void)foo;" soDaniel Stenberg2004-02-061-9/+8
* set the 'retry' bit to TRUE when the connection is about to be retried,Daniel Stenberg2004-02-021-0/+11
* make sure the connection is closed when it was detected reset!Daniel Stenberg2004-01-301-0/+2
* Somewhat crude attempt at fixing the test 91 failures. I commit this nowDaniel Stenberg2004-01-301-6/+20