What does HTTP status 100 (Continue) mean?

 
Could be also:
ConstantTypeOS
ERROR_TOO_MANY_SEMAPHORESWin32 errorWindows
ENETDOWNerrnoLinux
EPROTOerrnoMac
EADDRINUSEerrnoWindows
SYMBOLIC_INITIALIZATION_FAILEDBugCheck CodeWindows
Previous Next
HTTP_STATUS_SWITCH_PROTOCOLS

HTTP_STATUS_CONTINUE

HTTP 100 is used with the Expect: 100-continue mechanism. It allows a client to send request headers first and wait before sending a potentially large request body.

This response is informational, not a final success result. A server can still reject the request with a final status after examining the headers, so clients must continue to read the response stream.

The interim response is most useful with Expect: 100-continue, allowing a client to avoid sending a large request body before the server accepts the request headers. It is not the final outcome. After receiving 100, the client sends the body and waits for the normal final response status.

RFC 9110: HTTP Semantics


Looking for a different code? Search another status or error code.