0aa031be | 10-Dec-2002 |
Daniel Stenberg |
recent fluff |
db6ff224 | 10-Dec-2002 |
Daniel Stenberg |
The initial HTTP request can now be sent in multiple parts, as part of the regular transfer process. This required some new tweaks, like for example we need to be able to tell the tranfer loo
The initial HTTP request can now be sent in multiple parts, as part of the regular transfer process. This required some new tweaks, like for example we need to be able to tell the tranfer loop to not chunky-encode uploads while we're transferring the rest of the request...
show more ...
|
b3c7cd61 | 10-Dec-2002 |
Daniel Stenberg |
send_buffer is no more here |
9ae05c4d | 10-Dec-2002 |
Daniel Stenberg |
added test56, nearly 100KB big! |
264e6f6e | 10-Dec-2002 |
Daniel Stenberg |
Test case for sending insanely big HTTP requests. Mainly done this way to make sure that it isn't all sent off in one single send() but instead really tests the multiple-part-send logic. |
ec7bccf6 | 10-Dec-2002 |
Daniel Stenberg |
more logging, now logs the full response too, basic support for dealing with chunked transfer-encoding uploads added |
49f75ee8 | 09-Dec-2002 |
Daniel Stenberg |
A normal POST now provides data to the main transfer loop via the usual read callback, and thus won't put a lot of stress on the request sending code (which currently does an ugly loop). |
4bcc866c | 09-Dec-2002 |
Daniel Stenberg |
The fread() callback pointer and associated pointer is now stored in the connectdata struct instead, and is no longer modified within the 'set' struct as previously (which was a really BAAAD
The fread() callback pointer and associated pointer is now stored in the connectdata struct instead, and is no longer modified within the 'set' struct as previously (which was a really BAAAD thing).
show more ...
|
c65e088c | 09-Dec-2002 |
Daniel Stenberg |
Added a default headers section and also made some minor details more up-to-date with recent changes. |
6ca41165 | 05-Dec-2002 |
Daniel Stenberg |
better errno include and no extern |
f6cdb820 | 05-Dec-2002 |
Daniel Stenberg |
read and write as much as possible until end of data or EWOULDBLOCK before returning back to the select() loop. Consider this a test so far. |
081e5a82 | 05-Dec-2002 |
Daniel Stenberg |
deal with spaces in name and value tags a lot better! |
2ad2a4bd | 05-Dec-2002 |
Daniel Stenberg |
changed proto for Curl_krb_kauth() |
645e700d | 05-Dec-2002 |
Daniel Stenberg |
Solaris needs errno as an extern int. |
92aea29a | 04-Dec-2002 |
Daniel Stenberg |
make WIN32 defined for Borland properly, as told by Alexander J. Oss |
e1c01af9 | 04-Dec-2002 |
Daniel Stenberg |
called SSLCERTS now |
7ef74949 | 04-Dec-2002 |
Daniel Stenberg |
7.10.3-pre2 |
d72aa491 | 04-Dec-2002 |
Daniel Stenberg |
The waiting for the 226 or 250 line expected to come after a transfer is complete is now only made for 60 seconds and if no data was received during those 60 seconds, we store a special error
The waiting for the 226 or 250 line expected to come after a transfer is complete is now only made for 60 seconds and if no data was received during those 60 seconds, we store a special error message (preparing to make this a special error code) as this most likely means that the control connection has died while we were transferring data.
show more ...
|
e92bd312 | 03-Dec-2002 |
Daniel Stenberg |
missing } |
b097c2cf | 03-Dec-2002 |
Daniel Stenberg |
clarified |
a39cdc80 | 03-Dec-2002 |
Daniel Stenberg |
Jeff pointed out this flaw in the example |
a4725081 | 03-Dec-2002 |
Daniel Stenberg |
-@ is no longer an official shortcut for --create-dirs |
1f50f303 | 03-Dec-2002 |
Daniel Stenberg |
don't officially use -@ for --create-dirs, only use the long form |
75145dd7 | 03-Dec-2002 |
Daniel Stenberg |
clarify the DEBUGFUNCTION data not being zero terminated |
d0b97f7e | 03-Dec-2002 |
Daniel Stenberg |
Curl_GetFTPResponse() takes a different set of parameters and now return a proper CURLcode. The default timeout for reading one response is now also possible to change while running. |