aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-03-13corrected the chunked formatDaniel Stenberg
2001-03-137.7 beta 2 fixesDaniel Stenberg
2001-03-13EXTRA_DIST got too long, I shortened it now but we have to do somethingDaniel Stenberg
else as it will grow a lot more...
2001-03-13failf() now respects the mute flagDaniel Stenberg
2001-03-13Guenole Bescon's bug found on march 8 is addedDaniel Stenberg
2001-03-13exchanged I and me to we and us in a lot of placesDaniel Stenberg
updated for persistant connections and 7.7
2001-03-13Added test case 37, HTTP GET with name+password in the URLDaniel Stenberg
2001-03-13a whole new section on persitant connections and how they're treatedDaniel Stenberg
internally
2001-03-13we speak HTTP 1.1 nowDaniel Stenberg
more braging about the portability
2001-03-13close policiesDaniel Stenberg
2001-03-13initial close policy supportDaniel Stenberg
2001-03-13Added 'created' to the connectdata struct to hold the creation date, toDaniel Stenberg
be used for the close policy decision
2001-03-13Curl_tvnow is now properly declared with (void)Daniel Stenberg
2001-03-13curl_getinfo is removed, not a public functionDaniel Stenberg
2001-03-12added --random-file and --egd-file to the command line clientDaniel Stenberg
2001-03-12Added the two new seeding optionsDaniel Stenberg
2001-03-12two new random seed options for the ssl config structDaniel Stenberg
2001-03-12two new random seed options: CURLOPT_RANDOM_FILE and CURLOPT_EGDSOCKETDaniel Stenberg
2001-03-12better chunked error detectionDaniel Stenberg
2001-03-12Added test case 36:Daniel Stenberg
[HTTP GET with badly formatted chunked Transfer-Encoding]
2001-03-12updated the comment for the chunked readingDaniel Stenberg
2001-03-12made it return illegal hex in case no hexadecimal digit was read when atDaniel Stenberg
least one was expected
2001-03-12added an error code for illegal hex values in the chunked streamDaniel Stenberg
2001-03-12Added new libcurl options in include/curl/curl.h, they're documented inDaniel Stenberg
curl_easy_setopt.3 and they're partly implemented in lib/url.c Slowly, we're getting there...
2001-03-12Added options for the persistant support, they're also documented inDaniel Stenberg
curl_easy_setopt.3 now
2001-03-12support for a few new libcurl 7.7 CURLOPT_* options addedDaniel Stenberg
2001-03-12Added four new options that come with the new persitant support:Daniel Stenberg
CURLOPT_MAXCONNECTS, CURLOPT_CLOSEPOLICY, CURLOPT_FRESH_CONNECT and CURLOPT_FORBID_REUSE
2001-03-12the client is adjusted to work with persistant curl handles, and *gee* itDaniel Stenberg
seems to be working!!!
2001-03-12Added infof() calls for persistant connection info, we are very likely toDaniel Stenberg
need these at least for debugging 7.7 and probably later as well...
2001-03-12moved the libcurl init callDaniel Stenberg
2001-03-12persistant updatesDaniel Stenberg
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.