You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The 100 Continue status indicates that the server has received the request headers and is ready for the client to send the request body.
19
+
The 100 Continue status indicates that the server has received the request headers and is ready for the client to send the request body. For more information, refer to [RFC7231](https://tools.ietf.org/html/rfc7231).
20
20
21
21
### Common use cases
22
22
@@ -28,9 +28,9 @@ When a client includes the `Expect: 100-continue` header, it is requesting a con
28
28
29
29
Cloudflare uses Keep-Alive connections to maintain persistent communication between clients and servers, making the `100 Continue` response typically unnecessary, as Keep-Alive reduces overhead and eliminates the need for intermediate confirmations.
The 101 Switching Protocols status code indicates that the origin server accepts the client's request to switch protocols.
33
+
The 101 Switching Protocols status code indicates that the origin server accepts the client's request to switch protocols. For more information, refer to [RFC7231](https://tools.ietf.org/html/rfc7231).
34
34
35
35
### Common use cases
36
36
@@ -40,9 +40,9 @@ The 101 Switching Protocols status code indicates that the server has accepted t
40
40
41
41
Cloudflare supports WebSocket connections, which often involve the 101 Switching Protocols status code. The protocol switch allows clients to establish a WebSocket connection for real-time, bidirectional communication. For information about Cloudflare's Websockets, refer to [Cloudflare Now Supports Websockets](https://blog.cloudflare.com/cloudflare-now-supports-websockets/).
102 Processing status code indicates that the server has received the request and is currently processing it, but the final response is not yet ready. This status code is only applicable to HTTP/1.1 and higher.
45
+
102 Processing status code indicates that the server has received the request and is currently processing it, but the final response is not yet ready. This status code is only applicable to HTTP/1.1 and higher. For more information refer, to [RFC2518](https://tools.ietf.org/html/rfc2518).
0 commit comments