When curl sends 100-continue
When sending a POST request with curl it sometimes automatically
adds an Expect: 100-continue
header. The following summarizes under
which conditions curl/libcurl adds this header.
Background¶
The Expect: 100-continue
header is specified in HTTP 1.1 and
allows the server to acknowledge or reject a POST/PUT request
immediately …