mirror of
https://github.com/rmaake1/httpstatuses.git
synced 2024-11-02 00:32:36 +01:00
f5df4b96b0
“RFCxxx Section x.x” rather than “Section x.x of RFCxxx”.
27 lines
950 B
Markdown
27 lines
950 B
Markdown
---
|
|
set: 1
|
|
code: 100
|
|
title: Continue
|
|
references:
|
|
"Rails HTTP Status Symbol": ":continue"
|
|
---
|
|
|
|
The initial part of a request has been received and has not yet been rejected by
|
|
the server. The server intends to send a final response after the request has
|
|
been fully received and acted upon.
|
|
|
|
When the request contains an Expect header field that includes a 100-continue
|
|
expectation, the 100 response indicates that the server wishes to receive the
|
|
request payload body<sup>[1](#ref-1)</sup>. The client ought to continue sending
|
|
the request and discard the 100 response.
|
|
|
|
If the request did not contain an Expect header field containing the
|
|
100-continue expectation, the client can simply discard this interim response.
|
|
|
|
---
|
|
|
|
* <span id="ref-1"><sup>1</sup> Expect [RFC7231 Section 5.1.1][2]</span>
|
|
* Source: [RFC7231 Section 6.1.1][1]
|
|
|
|
[1]: <http://tools.ietf.org/html/rfc7231#section-6.2.1>
|
|
[2]: <http://tools.ietf.org/html/rfc7231#section-5.1.1> |