summaryrefslogtreecommitdiff
path: root/lib/http.c
Commit message (Expand)AuthorAgeFilesLines
* fix signed and unsigned warningsDaniel Stenberg2004-03-141-2/+2
* postsize is off_t now, so we typecase it to int before doing normal printfDaniel Stenberg2004-03-131-1/+1
* the postsize is an off_t so use the proper printf format to output theDaniel Stenberg2004-03-131-1/+1
* more variable type fixing for the huge postsDaniel Stenberg2004-03-121-2/+2
* more variable type fixes for the large POST supportDaniel Stenberg2004-03-121-2/+2
* Made the 'postsize' variable an off_t type to be able to hold large fileDaniel Stenberg2004-03-121-2/+3
* Use more curl_off_t variables when doing the progress meter calculations andDaniel Stenberg2004-03-101-2/+2
* curl_socket_t mistakes cleanupDaniel Stenberg2004-03-101-1/+1
* keep the number of bytes read in a size_t variableDaniel Stenberg2004-03-101-1/+1
* Use curl_socket_t instead of int for holding sockets. The typedefs andDaniel Stenberg2004-03-091-1/+1
* explicit typecast to visualize that we really want the result of theDaniel Stenberg2004-03-091-1/+1
* issue 12 fixDaniel Stenberg2004-03-051-15/+38
* Yet another curl_off_t printf format attempt, we now exclude the %-letter fromDaniel Stenberg2004-03-021-5/+5
* use FORMAT_OFF_T instead of CURL_FORMAT_OFF_T to reduce the complexity ofDaniel Stenberg2004-03-021-5/+5
* Use CURL_FORMAT_OFF_T for printf()inf curl_off_t variables.Daniel Stenberg2004-03-011-4/+6
* Clear up int/long/size_t/ssize_t usage a bitDaniel Stenberg2004-02-261-19/+19
* More size_t cleanups in the base64 functions.Daniel Stenberg2004-02-231-2/+2
* Modified the default HTTP Accept: header to only be Accept: */*Daniel Stenberg2004-02-091-1/+1
* A custom Host: header is only considered if the request is not made byDaniel Stenberg2004-02-061-10/+6
* if an empty 'transfer-encoding:' header is provided, we switch off theDaniel Stenberg2004-02-051-7/+7
* set the 'retry' bit to TRUE when the connection is about to be retried,Daniel Stenberg2004-02-021-3/+5
* Dan Fandrich's cleanup patch to make pedantic compiler options cause lessDaniel Stenberg2004-01-291-5/+5
* Chunked-transfers should have an additional CRLF after the final 0 CRLFDaniel Stenberg2004-01-281-2/+2
* CONNECT response headers are now passed back as "regular" headersDaniel Stenberg2004-01-271-4/+15
* use curl_off_t instead of off_t!Daniel Stenberg2004-01-221-4/+5
* added one assert and a few comments describing how the auth stuff worksDaniel Stenberg2004-01-091-7/+25
* updated year in the copyright stringDaniel Stenberg2004-01-071-1/+1
* David J Meyer's large file support.Daniel Stenberg2004-01-051-14/+16
* When basic is the only auth wanted (which it is by default), the auth phaseDaniel Stenberg2003-11-251-14/+18
* allow the end-of-headers from a proxy response to CONNECT end with a CRCRDaniel Stenberg2003-11-241-2/+4
* FTPS support added as RFC2228 and the murray-ftp-auth-ssl draft describe itDaniel Stenberg2003-11-241-16/+17
* bail out properly on a 407 when we can't authenticate basic, bug reportDaniel Stenberg2003-11-201-2/+3
* gmtime() really can't even return NULL, can it?Daniel Stenberg2003-10-311-4/+0
* Improved checks for bad memory situations and proper behaviour when weDaniel Stenberg2003-10-241-17/+33
* conn->user and conn->passwd will now always be set to point to something.Daniel Stenberg2003-10-211-6/+3
* allow no user and password for proxy too, BasicDaniel Stenberg2003-10-201-1/+3
* allow no user and no passwd when doing basic authDaniel Stenberg2003-10-201-1/+3
* builds warning-free with -Wshadow nowDaniel Stenberg2003-10-181-3/+2
* compiler warning fixDaniel Stenberg2003-10-181-1/+1
* make empty names look fine in verbose outputDaniel Stenberg2003-10-171-2/+2
* show info text (verbose) about auth type and user name in useDaniel Stenberg2003-10-171-0/+13
* Gisle Vanem's IPv6-on-Windows patch applied!Daniel Stenberg2003-10-141-1/+0
* make sure that a regular POST using the read callback worksDaniel Stenberg2003-10-071-2/+6
* Vincent Bronner pointed out that if you set CURLOPT_COOKIE to NULL, it stillDaniel Stenberg2003-10-041-8/+9
* Markus Moeller's SPNEGO patch applied, with my edits, additions and minorDaniel Stenberg2003-09-191-2/+2
* When we issue a HTTP request, first make sure if the authentication phaseDaniel Stenberg2003-09-151-7/+31
* Tim Bartley's patch that makes the GSSNEGOTIATE option work for Microsoft'sDaniel Stenberg2003-09-111-1/+2
* ah, this change broke multiple test casesDaniel Stenberg2003-09-041-2/+2
* Jörg pointed out that I did this fix wrongly, now authwant is clearedDaniel Stenberg2003-09-041-3/+3
* Based on Joerg Mueller-Tolk's patch, this introduces support forDaniel Stenberg2003-09-041-3/+15