Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-03-12 | two new random seed options for the ssl config struct | Daniel Stenberg | |
2001-03-12 | two new random seed options: CURLOPT_RANDOM_FILE and CURLOPT_EGDSOCKET | Daniel Stenberg | |
2001-03-12 | better chunked error detection | Daniel Stenberg | |
2001-03-12 | Added test case 36: | Daniel Stenberg | |
[HTTP GET with badly formatted chunked Transfer-Encoding] | |||
2001-03-12 | updated the comment for the chunked reading | Daniel Stenberg | |
2001-03-12 | made it return illegal hex in case no hexadecimal digit was read when at | Daniel Stenberg | |
least one was expected | |||
2001-03-12 | added an error code for illegal hex values in the chunked stream | Daniel Stenberg | |
2001-03-12 | Added new libcurl options in include/curl/curl.h, they're documented in | Daniel Stenberg | |
curl_easy_setopt.3 and they're partly implemented in lib/url.c Slowly, we're getting there... | |||
2001-03-12 | Added options for the persistant support, they're also documented in | Daniel Stenberg | |
curl_easy_setopt.3 now | |||
2001-03-12 | support for a few new libcurl 7.7 CURLOPT_* options added | Daniel Stenberg | |
2001-03-12 | Added 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-12 | the client is adjusted to work with persistant curl handles, and *gee* it | Daniel Stenberg | |
seems to be working!!! | |||
2001-03-12 | Added infof() calls for persistant connection info, we are very likely to | Daniel Stenberg | |
need these at least for debugging 7.7 and probably later as well... | |||
2001-03-12 | moved the libcurl init call | Daniel Stenberg | |
2001-03-12 | persistant updates | Daniel Stenberg | |
2001-03-12 | added a note about persitant connections through HTTP proxies | Daniel Stenberg | |
2001-03-12 | Added some persistant notes | Daniel Stenberg | |
2001-03-12 | modified to make the curl client with persistant connection support do | Daniel Stenberg | |
correct | |||
2001-03-12 | include the failed test case numbers in the end summary | Daniel Stenberg | |
2001-03-12 | Added description of the new test case ranges support | Daniel Stenberg | |
2001-03-12 | made it support test case ranges on the command line, specified as | Daniel Stenberg | |
"X to Y", where X is smaller than Y. | |||
2001-03-12 | adjusted to work with the HTTP 1.1-speaking libcurl | Daniel Stenberg | |
2001-03-12 | output the protocol data to stderr when verbose is on | Daniel Stenberg | |
2001-03-12 | server problems, | Daniel Stenberg | |
libcurl *works* persistant over HTTP proxy!!!! | |||
2001-03-12 | modified 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-12 | split up the big printf() into several ones to never use strings longer | Daniel Stenberg | |
than 509 letters (as newer gcc warns on with -Wall) | |||
2001-03-12 | bugfix: don't use the connectindex if it is -1 | Daniel Stenberg | |
2001-03-12 | added persistant connection details | Daniel Stenberg | |
2001-03-12 | replaced I and my with we and us | Daniel Stenberg | |
2001-03-12 | updated | Daniel Stenberg | |
2001-03-09 | use the new name and hostname even though an old connection is reused, since | Daniel Stenberg | |
we can re-use a proxy connection that actually has different host names on the same connection | |||
2001-03-09 | remake Host: for each connection and it'll work with proxies too | Daniel Stenberg | |
2001-03-09 | for HTTP/1.0 we default to non keep-alive connections, but when we get a | Daniel 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-09 | Added httpversion to the progress struct, we do read it, we can just as well | Daniel Stenberg | |
store it. | |||
2001-03-09 | the socklen_t check is more involved now, but works on linux at least | Daniel Stenberg | |
2001-03-09 | Added socklen_t | Daniel Stenberg | |
2001-03-09 | added a check for socklen_t | Daniel Stenberg | |
removed the tiny/Makefile that was added accidentaly before | |||
2001-03-09 | all comments for the former public "low level" interface have been removed | Daniel Stenberg | |
since they were out-of-date and not correct anymore. moved around some struct fields | |||
2001-03-09 | removed handles and states from the main structs | Daniel Stenberg | |
renamed prefixes from curl_ to Curl_ made persistant connections work with http proxies (at least partly) | |||
2001-03-09 | curl_transfer became Curl_perform() to better match the public name and | Daniel Stenberg | |
use the correct prefix | |||
2001-03-09 | prefix 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 warning | Daniel Stenberg | |
2001-03-09 | removed curl_read() and curl_write() - they weren't used and the public | Daniel Stenberg | |
"low leve" interface is dumped | |||
2001-03-09 | uses socklen_t now | Daniel Stenberg | |
2001-03-09 | curl_ prefix modified to Curl_ | Daniel Stenberg | |
2001-03-09 | accept() and getsockname() now use socklen_t types, as that was just added | Daniel Stenberg | |
to configure | |||
2001-03-09 | use unsigned int hex to receive the hex digit in, caused a warning with | Daniel Stenberg | |
-Wall and a new gcc | |||
2001-03-09 | Modified to use Curl_* functions instead of curl_* ones | Daniel Stenberg | |
2001-03-09 | only generate maximum 509 characters in each string | Daniel Stenberg | |
2001-03-08 | version 7.7-beta1 | Daniel Stenberg | |