#
c7c94286 |
| 12-May-2001 |
Daniel Stenberg |
Added tons of comments all over
|
#
291075b1 |
| 11-May-2001 |
Daniel Stenberg |
checkheader() added to check headers+contents instead of the previous strnequal() approach that really didn't follow the RFC properly
|
#
fef1fc0d |
| 11-May-2001 |
Daniel Stenberg |
Ingo Wilken's redirect fixes
|
#
dc6da007 |
| 10-May-2001 |
Daniel Stenberg |
Ingo Wilken's patch to support multiple spaces after "Location:"
|
Revision tags: curl-7_7_3 |
|
#
a33eb988 |
| 03-May-2001 |
Daniel Stenberg |
Cris Bailiff's fix to never attempt to get the body of a 304-reply!
|
#
2eb94acb |
| 27-Apr-2001 |
Daniel Stenberg |
When Content-Length:0 is received, we now bail now and return success directly after all the headers are received!
|
#
3974f30e |
| 27-Apr-2001 |
Daniel Stenberg |
improved treatment of "Content-Length: 0", which is done by having maxdownload set to -1 when not used
|
Revision tags: curl-7_7_2 |
|
#
3fd65fb7 |
| 18-Apr-2001 |
Daniel Stenberg |
Remade resume stuff to keep data in the connectdata struct instead of the main handle struct to work with persistant connections
|
#
879c6c57 |
| 11-Apr-2001 |
Daniel Stenberg |
calling curl_easy_perform() with no URL set, now returns an error as early as possible
|
Revision tags: curl-7_7_1 |
|
#
6bd1ed03 |
| 03-Apr-2001 |
Daniel Stenberg |
bugfixed the Location: following that must've been bad since the persistant connections were introduced
|
#
fa491ed9 |
| 03-Apr-2001 |
Daniel Stenberg |
- disabling port on absolute redirects is wrong - removed #ifdefed code
|
#
28497e7e |
| 03-Apr-2001 |
Daniel Stenberg |
better error checks for failure conditions (based on Puneet Pawaia's reports)
|
#
3e65062b |
| 27-Mar-2001 |
Daniel Stenberg |
make sure the alarm is off when returning from curl_easy_perform()
|
#
31f9d401 |
| 26-Mar-2001 |
Daniel Stenberg |
'Connection: keep-alive' is now understood when sent by a HTTP/1.0 server as an indication of a persistant connection
|
#
1e14f8d4 |
| 23-Mar-2001 |
Daniel Stenberg |
DONT TOUCH the data->url as it may point to read-only memory!!!
|
#
02f6894a |
| 23-Mar-2001 |
Daniel Stenberg |
now always stops reading a HEAD reply after all the headers have been returned RFC 2616, section 9.4 says: "The HEAD method is identical to GET except that the server MUST NOT return a messag
now always stops reading a HEAD reply after all the headers have been returned RFC 2616, section 9.4 says: "The HEAD method is identical to GET except that the server MUST NOT return a message-body in the response."
show more ...
|
#
ec1f42a1 |
| 22-Mar-2001 |
Daniel Stenberg |
Treat 302-redirects the same way we treat 303-redirects
|
#
aa1c3bb4 |
| 22-Mar-2001 |
Daniel Stenberg |
reset the follow location counter in Curl_perform() so that we can follow new locations on the same connection that was previously followed on
|
Revision tags: curl-7_7, curl-7_7-beta5 |
|
#
78b4851d |
| 19-Mar-2001 |
Daniel Stenberg |
Added support for HTTP code 100 continue, as 8.2.3 in RFC2616 defines
|
#
38c47803 |
| 16-Mar-2001 |
Daniel Stenberg |
detect if chunked transfers are aborted
|
Revision tags: curl-7_7-beta3 |
|
#
f9cde064 |
| 13-Mar-2001 |
Daniel Stenberg |
Added a failf() error message when the chunked read returns failure
|
Revision tags: curl-7_7-beta2 |
|
#
46c9075e |
| 12-Mar-2001 |
Daniel Stenberg |
updated the comment for the chunked reading
|
#
d774b10a |
| 12-Mar-2001 |
Daniel Stenberg |
Added infof() calls for persistant connection info, we are very likely to need these at least for debugging 7.7 and probably later as well...
|
#
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 ...
|
#
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
|