]> granicus.if.org Git - curl/commitdiff
mention what happens to the data when a write callback returns pause
authorDaniel Stenberg <daniel@haxx.se>
Thu, 10 Apr 2008 09:06:47 +0000 (09:06 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 10 Apr 2008 09:06:47 +0000 (09:06 +0000)
docs/libcurl/curl_easy_pause.3

index 247b39c27f524de7cccb2a4fa8a8f604822d0df2..ae2ed90a0cef41a6be0802374e1de5820385d22a 100644 (file)
@@ -14,7 +14,10 @@ paused, and you can unpause a connection that was previously paused.
 
 A connection can made to pause by using this function or by letting the read
 or the write callbacks return the proper magic return code
-(\fICURL_READFUNC_PAUSE\fP and \fICURL_WRITEFUNC_PAUSE\fP).
+(\fICURL_READFUNC_PAUSE\fP and \fICURL_WRITEFUNC_PAUSE\fP). A write callback
+that returns pause signals to the library that it couldn't take care of any
+data at all, and that data will then be delivered again to the callback when
+the writing is later unpaused.
 
 NOTE: while it may feel tempting, take care and notice that you cannot call
 this function from another thread.