From 34cd43aca958d9967f08df83d787ee06f77fd71f Mon Sep 17 00:00:00 2001 From: kazu Date: Sat, 6 Jan 2018 04:55:06 +0000 Subject: Add 103 Early Hints see https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61634 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/net/http/responses.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib/net') diff --git a/lib/net/http/responses.rb b/lib/net/http/responses.rb index d57348b82f..617cd67328 100644 --- a/lib/net/http/responses.rb +++ b/lib/net/http/responses.rb @@ -35,6 +35,9 @@ end class Net::HTTPProcessing < Net::HTTPInformation # 102 HAS_BODY = false end +class Net::HTTPEarlyHints < Net::HTTPInformation # 103 - RFC 8297 + HAS_BODY = false +end class Net::HTTPOK < Net::HTTPSuccess # 200 HAS_BODY = true @@ -232,6 +235,7 @@ class Net::HTTPResponse '100' => Net::HTTPContinue, '101' => Net::HTTPSwitchProtocol, '102' => Net::HTTPProcessing, + '103' => Net::HTTPEarlyHints, '200' => Net::HTTPOK, '201' => Net::HTTPCreated, -- cgit v1.2.3