History log of /curl/lib/transfer.c (Results 551 – 575 of 866)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 316a9f64 20-Oct-2006 Yang Tse

Compiler warning fix


# 44d84ac1 17-Oct-2006 Daniel Stenberg

Avoid typecasting a signed char to an int when using is*() functions, as that
could very well cause a negate number get passed in and thus cause reading
outside of the array usually used for

Avoid typecasting a signed char to an int when using is*() functions, as that
could very well cause a negate number get passed in and thus cause reading
outside of the array usually used for this purpose.

We avoid this by using the uppercase macro versions introduced just now that
does some extra crazy typecasts to avoid byte codes > 127 to cause negative
int values.

show more ...


# ec956b03 17-Oct-2006 Yang Tse

Explicit typecast for Curl_debug() size argument


# e150150d 11-Oct-2006 Yang Tse

Remove redundant __CYGWIN__ symbol check


# 5e0d9aea 30-Sep-2006 Daniel Stenberg

Support for FTP third party transfers is now dropped


# c30e9080 10-Sep-2006 Yang Tse

Compiler warning fix


# b7eeb6e6 07-Sep-2006 Daniel Stenberg

Major overhaul introducing http pipelining support and shared connection
cache within the multi handle.


Revision tags: curl-7_15_6-prepipeline
# 4f4277d9 03-Sep-2006 Gisle Vanem

Simplified #ifdef on WIN32; the statement
" !defined(__GNUC__) || defined(__MINGW32__)" implies
CygWin.


# c7aae103 30-Aug-2006 Gisle Vanem

Removed "#ifndef__WATCOMC__". Use "#ifdef HAVE_SYS_TIME_H" instead.


# 59cf6fd4 29-Aug-2006 Gisle Vanem

Watcom lacks <sys/time.h>.


# bdbd0cf2 22-Aug-2006 Daniel Stenberg

David McCreedy fixed a remaining mistake from the August 19 TYPE change.


# cfdcae4b 19-Aug-2006 Daniel Stenberg

Based on a patch by Armel Asselin, the FTP code no longer re-issues the TYPE
command on subsequent requests on a re-used connection unless it has to.


# a4ebf5b5 08-Aug-2006 Daniel Stenberg

Fixed a flaw in the "Expect: 100-continue" treatment. If you did two POSTs
on a persistent connection and allowed the first to use that header, you
could not disable it for the second request.


Revision tags: curl-7_15_5
# 9dde0b54 31-Jul-2006 Yang Tse

Silence warning: empty body in an if-statement


# f36adcdb 25-Jul-2006 Daniel Stenberg

Georg Horn made the transfer timeout error message include more details


# dfe1884c 22-Jun-2006 Daniel Stenberg

Peter Silva introduced CURLOPT_MAX_SEND_SPEED_LARGE and
CURLOPT_MAX_RECV_SPEED_LARGE that limit tha maximum rate libcurl is allowed
to send or receive data. This kind of adds the the command

Peter Silva introduced CURLOPT_MAX_SEND_SPEED_LARGE and
CURLOPT_MAX_RECV_SPEED_LARGE that limit tha maximum rate libcurl is allowed
to send or receive data. This kind of adds the the command line tool's
option --limit-rate to the library.

The rate limiting logic in the curl app is now removed and is instead
provided by libcurl itself. Transfer rate limiting will now also work for -d
and -F, which it didn't before.

show more ...


# 76cf0207 15-Jun-2006 Daniel Stenberg

select_res is not a socket, it should be a plain int


Revision tags: curl-7_15_4
# a05ea124 09-Jun-2006 Daniel Stenberg

oops, serious breakage in the fdset() function


# 95152aec 26-Apr-2006 Daniel Stenberg

David McCreedy brought line end conversions when doing FTP ASCII
transfers. They are done on non-windows systems and translate CRLF to LF.


# 686d9074 10-Apr-2006 Daniel Stenberg

First curl_multi_socket() commit. Should primarily be considered as an internal
code rearrange to fit the future better.


# 5a4b4384 07-Apr-2006 Daniel Stenberg

First commit of David McCreedy's EBCDIC and TPF changes.


# bcc62cc9 28-Mar-2006 Daniel Stenberg

#1451929 (http://curl.haxx.se/bug/view.cgi?id=1451929) detailed a bug that
occurred when asking libcurl to follow HTTP redirects and the original URL had
more than one question mark (?). Adde

#1451929 (http://curl.haxx.se/bug/view.cgi?id=1451929) detailed a bug that
occurred when asking libcurl to follow HTTP redirects and the original URL had
more than one question mark (?). Added test case 276 to verify.

show more ...


Revision tags: curl-7_15_3, curl-7_15_2
# 29e446e5 19-Feb-2006 Daniel Stenberg

Shmulik Regev fixed an issue with multi-pass authentication and compressed
content when libcurl didn't honor the internal ignorebody flag.


# 87bcb6f3 11-Feb-2006 Daniel Stenberg

Karl M added the CURLOPT_CONNECT_ONLY and CURLINFO_LASTSOCKET options that
an app can use to let libcurl only connect to a remote host and then extract
the socket from libcurl. libcurl will t

Karl M added the CURLOPT_CONNECT_ONLY and CURLINFO_LASTSOCKET options that
an app can use to let libcurl only connect to a remote host and then extract
the socket from libcurl. libcurl will then not attempt to do any transfer at
all after the connect is done.

show more ...


# 12f5c67b 07-Feb-2006 Daniel Stenberg

Philippe Vaucher provided a brilliant piece of test code that show a problem
with re-used FTP connections. If the second request on the same connection was
set not to fetch a "body", libcurl

Philippe Vaucher provided a brilliant piece of test code that show a problem
with re-used FTP connections. If the second request on the same connection was
set not to fetch a "body", libcurl could get confused and consider it an
attempt to use a dead connection and would go acting mighty strange.

show more ...


1...<<21222324252627282930>>...35