#
b0b50bd1 |
| 30-Jan-2003 |
Daniel Stenberg |
typecast the argument to isspace() to an int to prevent warnings on some compilers
|
#
169b2eeb |
| 30-Jan-2003 |
Daniel Stenberg |
Fixes bug #669059. We now extract the Content-Type better and more accurate.
|
#
30a46e11 |
| 29-Jan-2003 |
Daniel Stenberg |
John McGowan found a problem where the DEBUGFUNCTION was called with bad data on uploads.
|
#
a7c72b7a |
| 29-Jan-2003 |
Daniel Stenberg |
removed the local variables for emacs and vim, use the new sample.emacs way for emacs, and vim users should provide a similar non-polluting style
|
#
2b054e53 |
| 24-Jan-2003 |
Daniel Stenberg |
Bertrand Demiddelaer found and fixed this memory leak.
|
#
dee3163d |
| 21-Jan-2003 |
Daniel Stenberg |
when a chunked error is noticed, store the error number in the error string to enable better error-tracking
|
#
5a83976c |
| 20-Jan-2003 |
Daniel Stenberg |
Markus F.X.J. Oberhumer's patch that reduces memory usage quite a bit by only allocating the scratch memory buffer once it is needed and not always in the handle.
|
#
f26a338a |
| 16-Jan-2003 |
Daniel Stenberg |
copyright year update in the source header
|
#
63667dfd |
| 15-Jan-2003 |
Daniel Stenberg |
no TABs in source code
|
Revision tags: curl-7_10_3 |
|
#
ec24efda |
| 07-Jan-2003 |
Daniel Stenberg |
Simon Liu's HTTP200ALIASES-patch!
|
#
efbe930a |
| 18-Dec-2002 |
Daniel Stenberg |
CURLE_HTTP_NOT_FOUND => CURLE_HTTP_RETURNED_ERROR
|
#
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 ...
|
#
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 ...
|
#
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.
|
#
1c49a00d |
| 28-Nov-2002 |
Daniel Stenberg |
compareheader() was moved over to http.c and got a Curl_ prefix The chunked transfer upload never stopped due to a silly add before we checked for >0!
|
Revision tags: curl-7_10_2 |
|
#
42acb00c |
| 11-Nov-2002 |
Daniel Stenberg |
moved the bools in the connectdata struct into the substruct named ConnectBits where the other bools already are
|
#
03c22b45 |
| 11-Nov-2002 |
Daniel Stenberg |
Now supports "Transfer-Encoding: chunked" for HTTP PUT operations where the size of the uploaded file is unknown.
|
#
cdba92ac |
| 28-Oct-2002 |
Daniel Stenberg |
when using checkprefix(), the first argument must be the prefix!
|
#
6d28f92f |
| 28-Oct-2002 |
Daniel Stenberg |
Transfer-Encoding: needs 17 bytes passed, not 18
|
#
01387f42 |
| 28-Oct-2002 |
Daniel Stenberg |
kromJx@crosswinds.net's fix that now uses checkprefix() instead of strnequal() when the third argument was strlen(first argument) anyway. This makes it less prone to errors. (Slightly edited
kromJx@crosswinds.net's fix that now uses checkprefix() instead of strnequal() when the third argument was strlen(first argument) anyway. This makes it less prone to errors. (Slightly edited by me)
show more ...
|
#
b5a74715 |
| 23-Oct-2002 |
Daniel Stenberg |
bad headers can come in two kinds, we either treat everything as one big badly assumed header, or we think that parts of the buffer is a bad header and the rest is treated as a normal body pa
bad headers can come in two kinds, we either treat everything as one big 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
show more ...
|
#
0fa512f2 |
| 21-Oct-2002 |
Daniel Stenberg |
Nikita Schmidt's fix to debian bug report #165382. This is verified with the new test case 55.
|
#
9e612b55 |
| 18-Oct-2002 |
Daniel Stenberg |
make very sure that we return 'done' properly when a transfer is done, as otherwise the multi interface gets problems
|
#
45bd009b |
| 18-Oct-2002 |
Daniel Stenberg |
if we found no string on the Location: line, don't try to follow it
|
#
156aad19 |
| 17-Oct-2002 |
Daniel Stenberg |
Make the COOKIESESSION work better by creating a list of cookie files files when given in the curl_easy_setopt() and then parse them all on the first curl_easy_perform() call instead.
|