Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-04-08 | James Bursa fixed a flaw in the content-type extracting code that could | Daniel Stenberg | |
miss the first letter | |||
2003-02-26 | No longer loop to read multiple times before returning back from the transfer | Daniel Stenberg | |
function, as this could easily end up looping for a very long time (more or less until the whole transfer was done) and no library-using app would want that. Found thanks to a report by Kyle Sallee. | |||
2003-02-24 | Fixes to bring back the the "Expect: 100-continue" functionality. If the | Daniel Stenberg | |
header is used, we must wait for a 100-code (or timeout), before we send the data. The timeout is merely 1000 ms at this point. We may have reason to set a longer timeout in the future. | |||
2003-01-30 | typecast the argument to isspace() to an int to prevent warnings on some | Daniel Stenberg | |
compilers | |||
2003-01-30 | Fixes bug #669059. We now extract the Content-Type better and more accurate. | Daniel Stenberg | |
2003-01-29 | John McGowan found a problem where the DEBUGFUNCTION was called with bad | Daniel Stenberg | |
data on uploads. | |||
2003-01-29 | removed the local variables for emacs and vim, use the new sample.emacs | Daniel Stenberg | |
way for emacs, and vim users should provide a similar non-polluting style | |||
2003-01-24 | Bertrand Demiddelaer found and fixed this memory leak. | Daniel Stenberg | |
2003-01-21 | when a chunked error is noticed, store the error number in the error string | Daniel Stenberg | |
to enable better error-tracking | |||
2003-01-20 | Markus F.X.J. Oberhumer's patch that reduces memory usage quite a bit by | Daniel Stenberg | |
only allocating the scratch memory buffer once it is needed and not always in the handle. | |||
2003-01-16 | copyright year update in the source header | Daniel Stenberg | |
2003-01-15 | no TABs in source code | Daniel Stenberg | |
2003-01-07 | Simon Liu's HTTP200ALIASES-patch! | Daniel Stenberg | |
2002-12-18 | CURLE_HTTP_NOT_FOUND => CURLE_HTTP_RETURNED_ERROR | Daniel Stenberg | |
2002-12-10 | The initial HTTP request can now be sent in multiple parts, as part of the | Daniel Stenberg | |
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... | |||
2002-12-09 | The fread() callback pointer and associated pointer is now stored in the | Daniel Stenberg | |
connectdata struct instead, and is no longer modified within the 'set' struct as previously (which was a really BAAAD thing). | |||
2002-12-05 | read and write as much as possible until end of data or EWOULDBLOCK before | Daniel Stenberg | |
returning back to the select() loop. Consider this a test so far. | |||
2002-11-28 | compareheader() was moved over to http.c and got a Curl_ prefix | Daniel Stenberg | |
The chunked transfer upload never stopped due to a silly add before we checked for >0! | |||
2002-11-11 | moved the bools in the connectdata struct into the substruct named | Daniel Stenberg | |
ConnectBits where the other bools already are | |||
2002-11-11 | Now supports "Transfer-Encoding: chunked" for HTTP PUT operations where the | Daniel Stenberg | |
size of the uploaded file is unknown. | |||
2002-10-28 | when using checkprefix(), the first argument must be the prefix! | Daniel Stenberg | |
2002-10-28 | Transfer-Encoding: needs 17 bytes passed, not 18 | Daniel Stenberg | |
2002-10-28 | kromJx@crosswinds.net's fix that now uses checkprefix() instead of | Daniel Stenberg | |
strnequal() when the third argument was strlen(first argument) anyway. This makes it less prone to errors. (Slightly edited by me) | |||
2002-10-23 | bad headers can come in two kinds, we either treat everything as one big | Daniel Stenberg | |
badly assumed header, or we think that parts of the buffer is a bad header and the rest is treated as a normal body part | |||
2002-10-21 | Nikita Schmidt's fix to debian bug report #165382. This is verified with | Daniel Stenberg | |
the new test case 55. | |||
2002-10-18 | make very sure that we return 'done' properly when a transfer is done, as | Daniel Stenberg | |
otherwise the multi interface gets problems | |||
2002-10-18 | if we found no string on the Location: line, don't try to follow it | Daniel Stenberg | |
2002-10-17 | Make the COOKIESESSION work better by creating a list of cookie files files | Daniel Stenberg | |
when given in the curl_easy_setopt() and then parse them all on the first curl_easy_perform() call instead. | |||
2002-10-11 | When we receive a "bad header" we must sure not to write down the data part | Daniel Stenberg | |
as well, as then we write the same data twice. | |||
2002-10-09 | Junk data could get inserted when saving/getting HTTP headers, as discovered | Daniel Stenberg | |
by Craig Davison. Now we deal with the 'nread' variable correctly between each header line. | |||
2002-10-07 | Move the URL concat code to Curl_follow(), and added a proto for that | Daniel Stenberg | |
function. For Location: following. | |||
2002-10-04 | as Ralph Mitchell pointed out, the Location: following code needs some | Daniel Stenberg | |
basic ./ and ../ strip-off understanding, and this change introduces with. test cases 49 - 52 test this. | |||
2002-09-23 | spell fix comment | Daniel Stenberg | |
2002-09-16 | a follow-up fix to the previous fix for HTTP servers that don't reply *any* | Daniel Stenberg | |
headers at all | |||
2002-09-13 | better deal with HTTP(S) servers that respond with no headers at all, test | Daniel Stenberg | |
case 306 added to verify that we do right | |||
2002-09-09 | remove redundant comment | Daniel Stenberg | |
2002-09-03 | updated source code boilerplate/header | Daniel Stenberg | |
2002-09-02 | James Gallagher's Content-Encoding work | Daniel Stenberg | |
2002-08-29 | remove the data and conn fields from the Curl_transfer_keeper struct, they | Daniel Stenberg | |
weren't used anyway and mostly caused confusion | |||
2002-08-08 | Markus F.X.J. Oberhumer's CURLOPT_NOSIGNAL patch | Daniel Stenberg | |
2002-08-05 | Make SessionHandle keep record if it is used with the multi interface or | Daniel Stenberg | |
the easy interface, it CANNOT be used by a mixture. | |||
2002-07-29 | fixed the Curl_cookie_add() invoke to not assume a space after the colon | Daniel Stenberg | |
2002-06-15 | CURLOPT_BUFFERSIZE allows an application to set a prefered buffer size | Daniel Stenberg | |
for receiving data from the network. It is meant as a hint, not as a forced limit. | |||
2002-06-12 | Moved the secondarysocket cleanup. The 'conn' struct may have been cleared | Daniel Stenberg | |
already at that other place. | |||
2002-06-10 | Gautam Mani found a socket descriptor leak that happened when FTP transfers | Daniel Stenberg | |
failed and you reinvoked curl_easy_perform(). | |||
2002-05-28 | Adjusted to make curl_multi_perform() work properly even when | Daniel Stenberg | |
curl_multi_fdset() is not used. | |||
2002-05-05 | Better support for being used with the multi interface without the *fd_set() | Daniel Stenberg | |
and proper select()ing have been made. | |||
2002-05-03 | made the DEBUGFUNCTION get called properly on a few more places, especially | Daniel Stenberg | |
for DATA_IN and DATA_OUT. | |||
2002-05-02 | use and set the fd_set pointers instead of the actual values, as then we | Daniel Stenberg | |
work properly with the multi interface when the user has provided the fd_sets! | |||
2002-05-02 | Hanno Kranzhoff noticed we didn't properly reset the download/upload counters | Daniel Stenberg | |
before transfers, when doing multiple ones on the same handle. |