- Eric Wong's patch:

This allows curl(1) to be used as a client-side tunnel for arbitrary stream
  protocols by abusing chunked transfer encoding in both the HTTP request and
  HTTP response.  This requires server support for sending a response while a
  request is still being read, of course.

  If attempting to read from stdin returns EAGAIN, then we pause our sender.
  This leaves curl to attempt to read from the socket while reading from stdin
  (and thus sending) is paused.
This commit is contained in:
Daniel Stenberg 2009-06-15 21:13:00 +00:00
parent 7ae624e700
commit 4b6d3a2bfd
3 changed files with 46 additions and 2 deletions

View file

@ -26,6 +26,8 @@ This release includes the following bugfixes:
o djgpp build fix
o configure detection of GnuTLS now based on pkg-config
o libcurl-NSS client cert handling segfaults
o curl uploading from stdin/pipes now works in non-blocking way so that it
continues the downloading even when the read stalls
This release includes the following known bugs: