protocol-rack 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/lib/protocol/rack/adapter/generic.rb +5 -1
- data/lib/protocol/rack/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +1 -1
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7aabc09a18a32e49d2a964c0b736d1e8613532d21a814dd1301be60a4963c057
|
4
|
+
data.tar.gz: b229ee85cca50e1803421ef4cf831b15258210d93d1613ef3bd864861a5762d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2989f0116da4d5c66cc776f9fda9cc6e67e92744af61d7ab8cb326611829dd372bf10b8610cc3f61dc88e8d8989222a02adb787a3bd763986c057e0b213203ae
|
7
|
+
data.tar.gz: b0a371f9ec89ed91f2745a7590a601ddb62591d3e14161d16c24881aff90c08e43d46a4ca881916204e1819d47a4f3a5ab24620cc333a807c1b8a81a5a9806fc
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
@@ -69,10 +69,14 @@ module Protocol
|
|
69
69
|
self.unwrap_headers(request.headers, env)
|
70
70
|
|
71
71
|
# For the sake of compatibility, we set the `HTTP_UPGRADE` header to the requested protocol.
|
72
|
-
if protocol = request.protocol and request.version.start_with?('
|
72
|
+
if protocol = request.protocol and request.version.start_with?('HTTP/1')
|
73
73
|
env[CGI::HTTP_UPGRADE] = Array(protocol).join(",")
|
74
74
|
end
|
75
75
|
|
76
|
+
if request.respond_to?(:hijack?) and request.hijack?
|
77
|
+
env[RACK_HIJACK] = proc{request.hijack!.io.dup}
|
78
|
+
end
|
79
|
+
|
76
80
|
# HTTP/2 prefers `:authority` over `host`, so we do this for backwards compatibility.
|
77
81
|
env[CGI::HTTP_HOST] ||= request.authority
|
78
82
|
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
metadata.gz.sig
CHANGED
Binary file
|