Skip to content
Snippets Groups Projects
Commit 8d212056 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

added CURL_READFUNC_ABORT

parent 67341c4c
No related branches found
No related tags found
No related merge requests found
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment