From: Daniel Stenberg Date: Mon, 21 Jun 2004 14:04:36 +0000 (+0000) Subject: added CURL_READFUNC_ABORT X-Git-Tag: curl-7_12_1~247 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8d2120566ec88eb01f1eb5b4e50115cff1e0b2e5;p=thirdparty%2Fcurl.git added CURL_READFUNC_ABORT --- diff --git a/include/curl/curl.h b/include/curl/curl.h index ef7129856c..1407e889d6 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -143,6 +143,9 @@ typedef size_t (*curl_write_callback)(char *buffer, size_t nitems, void *outstream); +/* This is a brand new return code for the read callback that will signal + the caller to immediately abort the current transfer. */ +#define CURL_READFUNC_ABORT 0x10000000 typedef size_t (*curl_read_callback)(char *buffer, size_t size, size_t nitems,