diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-06-11 15:31:40 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-06-11 15:31:40 +0000 |
commit | 09df1cd41ebe509149bfed33d1f0a75d63f6af1f (patch) | |
tree | b8e6a8439897e3f999256dcecb0197c585520423 | |
parent | 52c5b572005662803ced51f4008bc175e8b59eca (diff) |
to support "redirects" after the full body is transfered
-rw-r--r-- | lib/urldata.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/urldata.h b/lib/urldata.h index 4a2e97f06..a03e12d26 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -359,6 +359,8 @@ struct Curl_transfer_keeper { bool upload_done; /* set to TRUE when doing chunked transfer-encoding upload and we're uploading the last chunk */ + + bool returnbeforebody; /* if to break transfer after headers */ }; /* |