From afff64dbcde9cf45956f5557a8270b21c0e93dd5 Mon Sep 17 00:00:00 2001 From: Michael Kaufmann Date: Sun, 18 Dec 2016 12:51:48 +0100 Subject: curl_easy_recv: Improve documentation and example program Follow-up to 82245ea: Fix the example program sendrecv.c (handle CURLE_AGAIN, handle incomplete send). Improve the documentation for curl_easy_recv() and curl_easy_send(). Reviewed-by: Frank Meier Assisted-by: Jay Satiro See https://github.com/curl/curl/pull/1134 --- tests/libtest/lib556.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'tests/libtest') diff --git a/tests/libtest/lib556.c b/tests/libtest/lib556.c index a26101940..f06c5299c 100644 --- a/tests/libtest/lib556.c +++ b/tests/libtest/lib556.c @@ -77,11 +77,10 @@ int test(char *URL) if(!res) { /* we assume that sending always work */ - size_t total=0; do { /* busy-read like crazy */ - res = curl_easy_recv(curl, buf, 1024, &iolen); + res = curl_easy_recv(curl, buf, sizeof(buf), &iolen); #ifdef TPF sleep(1); /* avoid ctl-10 dump */ @@ -92,10 +91,12 @@ int test(char *URL) if(!write(STDOUT_FILENO, buf, iolen)) break; } - total += iolen; - } while(((res == CURLE_OK) || (res == CURLE_AGAIN)) && (total < 129)); + } while((res == CURLE_OK && iolen != 0) || (res == CURLE_AGAIN)); } + + if(res != CURLE_OK || iolen != 0) + return TEST_ERR_FAILURE; } test_cleanup: -- cgit v1.2.3