-
Notifications
You must be signed in to change notification settings - Fork 646
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
http: Verify if we need to get http client support for 100 Continue #101
Comments
8.2.3 Use of the 100 (Continue) Status The purpose of the 100 (Continue) status (see section 10.1.1) is to allow a client that is sending a request message with a request body to determine if the origin server is willing to accept the request (based on the request headers) before the client sends the request body. In some cases, it might either be inappropriate or highly inefficient for the client to send the body if the server will reject the message without looking at the body. Requirements for HTTP/1.1 clients:
|
To keep note of while implementing this feature - https://tools.ietf.org/html/rfc7231#page-35
Currently being transparently being implemented by http.Client we need to make sure that Golang http.Client would behave this way. |
golang/go#3665 - waiting on this Go 1.6
The text was updated successfully, but these errors were encountered: