aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-03-12added a note about persitant connections through HTTP proxiesDaniel Stenberg
2001-03-12Added some persistant notesDaniel Stenberg
2001-03-12modified to make the curl client with persistant connection support doDaniel Stenberg
correct
2001-03-12include the failed test case numbers in the end summaryDaniel Stenberg
2001-03-12Added description of the new test case ranges supportDaniel Stenberg
2001-03-12made it support test case ranges on the command line, specified asDaniel Stenberg
"X to Y", where X is smaller than Y.
2001-03-12adjusted to work with the HTTP 1.1-speaking libcurlDaniel Stenberg
2001-03-12output the protocol data to stderr when verbose is onDaniel Stenberg
2001-03-12server problems,Daniel Stenberg
libcurl *works* persistant over HTTP proxy!!!!
2001-03-12modified Curl_disconnect() so that it unlinks itself from the data struct,Daniel Stenberg
it saves me from more mistakes when the connectindex is -1 ... also, there's no point in having its parent do it as all parents would do it anyway.
2001-03-12split up the big printf() into several ones to never use strings longerDaniel Stenberg
than 509 letters (as newer gcc warns on with -Wall)
2001-03-12bugfix: don't use the connectindex if it is -1Daniel Stenberg
2001-03-12added persistant connection detailsDaniel Stenberg
2001-03-12replaced I and my with we and usDaniel Stenberg
2001-03-12updatedDaniel Stenberg
2001-03-09use the new name and hostname even though an old connection is reused, sinceDaniel Stenberg
we can re-use a proxy connection that actually has different host names on the same connection
2001-03-09remake Host: for each connection and it'll work with proxies tooDaniel Stenberg
2001-03-09for HTTP/1.0 we default to non keep-alive connections, but when we get aDaniel Stenberg
1.0-reply from a proxy we use and the Proxy-Connection: keep-alive header is used, we switch it on and live happily ever after
2001-03-09Added httpversion to the progress struct, we do read it, we can just as wellDaniel Stenberg
store it.
2001-03-09the socklen_t check is more involved now, but works on linux at leastDaniel Stenberg
2001-03-09Added socklen_tDaniel Stenberg
2001-03-09added a check for socklen_tDaniel Stenberg
removed the tiny/Makefile that was added accidentaly before
2001-03-09all comments for the former public "low level" interface have been removedDaniel Stenberg
since they were out-of-date and not correct anymore. moved around some struct fields
2001-03-09removed handles and states from the main structsDaniel Stenberg
renamed prefixes from curl_ to Curl_ made persistant connections work with http proxies (at least partly)
2001-03-09curl_transfer became Curl_perform() to better match the public name andDaniel Stenberg
use the correct prefix
2001-03-09prefix changes curl_ to Curl_Daniel Stenberg
made it work (partly) with persistant connections for HTTP/1.0 replies moved the 'newurl' struct field for Location: to the connectdata struct
2001-03-09#include <string.h> removed a warningDaniel Stenberg
2001-03-09removed curl_read() and curl_write() - they weren't used and the publicDaniel Stenberg
"low leve" interface is dumped
2001-03-09uses socklen_t nowDaniel Stenberg
2001-03-09curl_ prefix modified to Curl_Daniel Stenberg
2001-03-09accept() and getsockname() now use socklen_t types, as that was just addedDaniel Stenberg
to configure
2001-03-09use unsigned int hex to receive the hex digit in, caused a warning withDaniel Stenberg
-Wall and a new gcc
2001-03-09Modified to use Curl_* functions instead of curl_* onesDaniel Stenberg
2001-03-09only generate maximum 509 characters in each stringDaniel Stenberg
2001-03-08version 7.7-beta1Daniel Stenberg
2001-03-08persistant adjustsDaniel Stenberg
2001-03-08HTTP HEAD testsDaniel Stenberg
2001-03-08return from transfer when all headers have been received and nobody is set,Daniel Stenberg
as is the case when doing HEAD requests
2001-03-08updated for persistant connectionsDaniel Stenberg
2001-03-08made it split the version number on - too to make 7.7-blabla make a betterDaniel Stenberg
version number define in the header file
2001-03-08added lots of numbers for the error codes as they're often printedDaniel Stenberg
and used
2001-03-08clarified the 0001-files use a bit, I couldn't understand it myself! :-)Daniel Stenberg
2001-03-08Added test #34 - HTTP GET with chunked Transfer-EncodingDaniel Stenberg
2001-03-07"Transfer-Encoding: chunked" support addedDaniel Stenberg
2001-03-07added the http_chunks filesDaniel Stenberg
2001-03-07chunked transfer encoding supportDaniel Stenberg
2001-03-07connection timeout is in for 7.7Daniel Stenberg
2001-03-07initial chunked transfer-encoding supportDaniel Stenberg
2001-03-07removed compiler warning if HAVE_RAND_STATUS is falseDaniel Stenberg
2001-03-06Added persistant connections blurb even if it doesn't really work yet...Daniel Stenberg