e97fc2aa | 12-Mar-2001 |
Daniel Stenberg |
Added description of the new test case ranges support |
a23ac241 | 12-Mar-2001 |
Daniel Stenberg |
made it support test case ranges on the command line, specified as "X to Y", where X is smaller than Y. |
9ee14644 | 12-Mar-2001 |
Daniel Stenberg |
adjusted to work with the HTTP 1.1-speaking libcurl |
c576e114 | 12-Mar-2001 |
Daniel Stenberg |
output the protocol data to stderr when verbose is on |
639a7982 | 12-Mar-2001 |
Daniel Stenberg |
server problems, libcurl *works* persistant over HTTP proxy!!!! |
5bbe1894 | 12-Mar-2001 |
Daniel Stenberg |
modified Curl_disconnect() so that it unlinks itself from the data struct, it saves me from more mistakes when the connectindex is -1 ... also, there's no point in having its parent do it as
modified Curl_disconnect() so that it unlinks itself from the data struct, 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.
show more ...
|
93ff159e | 12-Mar-2001 |
Daniel Stenberg |
split up the big printf() into several ones to never use strings longer than 509 letters (as newer gcc warns on with -Wall) |
8eb8a0a8 | 12-Mar-2001 |
Daniel Stenberg |
bugfix: don't use the connectindex if it is -1 |
a4af6388 | 12-Mar-2001 |
Daniel Stenberg |
added persistant connection details |
75a9a87e | 12-Mar-2001 |
Daniel Stenberg |
replaced I and my with we and us |
b5ba0111 | 12-Mar-2001 |
Daniel Stenberg |
updated |
e9b763ff | 09-Mar-2001 |
Daniel Stenberg |
use the new name and hostname even though an old connection is reused, since we can re-use a proxy connection that actually has different host names on the same connection |
ac0bad24 | 09-Mar-2001 |
Daniel Stenberg |
remake Host: for each connection and it'll work with proxies too |
67d5c0a9 | 09-Mar-2001 |
Daniel Stenberg |
for HTTP/1.0 we default to non keep-alive connections, but when we get a 1.0-reply from a proxy we use and the Proxy-Connection: keep-alive header is used, we switch it on and live happily ev
for HTTP/1.0 we default to non keep-alive connections, but when we get a 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
show more ...
|
580896d6 | 09-Mar-2001 |
Daniel Stenberg |
Added httpversion to the progress struct, we do read it, we can just as well store it. |
11693c0f | 09-Mar-2001 |
Daniel Stenberg |
the socklen_t check is more involved now, but works on linux at least |
26cd8eda | 09-Mar-2001 |
Daniel Stenberg |
Added socklen_t |
8cd3f440 | 09-Mar-2001 |
Daniel Stenberg |
added a check for socklen_t removed the tiny/Makefile that was added accidentaly before |
2b30bfc3 | 09-Mar-2001 |
Daniel Stenberg |
all comments for the former public "low level" interface have been removed since they were out-of-date and not correct anymore. moved around some struct fields |
8ec4dba5 | 09-Mar-2001 |
Daniel Stenberg |
removed handles and states from the main structs renamed prefixes from curl_ to Curl_ made persistant connections work with http proxies (at least partly) |
1efec657 | 09-Mar-2001 |
Daniel Stenberg |
curl_transfer became Curl_perform() to better match the public name and use the correct prefix |
781dd7a9 | 09-Mar-2001 |
Daniel Stenberg |
prefix changes curl_ to Curl_ made it work (partly) with persistant connections for HTTP/1.0 replies moved the 'newurl' struct field for Location: to the connectdata struct |
beb8761b | 09-Mar-2001 |
Daniel Stenberg |
#include <string.h> removed a warning |
071c7de9 | 09-Mar-2001 |
Daniel Stenberg |
removed curl_read() and curl_write() - they weren't used and the public "low leve" interface is dumped |
3e7ebcd0 | 09-Mar-2001 |
Daniel Stenberg |
uses socklen_t now |