diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-02-26 22:48:09 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-02-26 22:48:14 +0100 |
commit | 6375b205a9d3ebe9583871178db258e6a1f4dfff (patch) | |
tree | 425ef8d1e1d3c6c23c83f9eefb491ec14935e087 /lib/urldata.h | |
parent | 8220ec82196f8331460f68b676b7aea6d9e3e806 (diff) | |
download | curl-6375b205a9d3ebe9583871178db258e6a1f4dfff.tar.gz |
http: added 417 response treatment
When doing a request with a body + Expect: 100-continue and the server
responds with a 417, the same request will be retried immediately
without the Expect: header.
Added test 357 to verify.
Also added a control instruction to tell the sws test server to not read
the request body if Expect: is present, which the new test 357 uses.
Reported-by: bramus on github
Fixes #4949
Closes #4964
Diffstat (limited to 'lib/urldata.h')
-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 6401f49f2..e1348cf29 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -1442,6 +1442,8 @@ struct UrlState { BIT(ftp_trying_alternative); BIT(wildcardmatch); /* enable wildcard matching */ BIT(expect100header); /* TRUE if we added Expect: 100-continue */ + BIT(disableexpect); /* TRUE if Expect: is disabled due to a previous + 417 response */ BIT(use_range); BIT(rangestringalloc); /* the range string is malloc()'ed */ BIT(done); /* set to FALSE when Curl_init_do() is called and set to TRUE |