HTTP 100

ふと、調べなおした。昔調べたのに忘れてたのでメモっとこう。
例)ファイルのアップロード

クライント → サーバ
PUT uri, Content-Length: 10MB!(content-header の最後まで送信)
サーバ → クライアント
100 Continue
413 Request Entity Too Large
415 Unsupported Media Type
417 Exceptation Failed
クライント → サーバ
100 の場合だけ data-data-data(content-body の 10MB を送信)
サーバ → クライアント
続けて通常のレスポンス、たとえば 200 Okay ... を返す