http-2-next 0.2.3 → 0.2.4
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
- data/README.md +2 -2
- data/lib/http/2/next/flow_buffer.rb +1 -1
- data/lib/http/2/next/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '0951e3da74f70138e1ce72ce1669f372a265c83e57367b97919a1f8dd1a4788f'
|
|
4
|
+
data.tar.gz: afd99005840bc669dcc4d3ff7e8dec2779d9feff4bcf50865364119b1a492646
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 97af505781e2963e4b5717ec5f2ddc334bcbef5a7ee0e4f7433c171ac917096a1694c0c51aaf2a888e50da406e0692f4f57a52be27f625533513fcf777937b3d
|
|
7
|
+
data.tar.gz: '08d581534ac39f3b18a268f2f727602635bb376bb2335ba997159658880c3f3c00b87ad2767b928d1468d3bc44d7bee49c24583d97662e5b5761b94a42d9bdd8'
|
data/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# HTTP-2-Next
|
|
2
2
|
|
|
3
|
-
[](http://rubygems.org/gems/http-2)
|
|
3
|
+
[](http://rubygems.org/gems/http-2-next)
|
|
4
4
|
[](https://gitlab.com/honeyryderchuck/http-2-next/commits/master)
|
|
5
|
-
[](https://honeyryderchuck.gitlab.io/http-2-next/coverage/#_AllFiles)
|
|
6
6
|
|
|
7
7
|
**Attention!** This is a fork of the [http-2](https://github.com/igrigorik/http-2) gem.
|
|
8
8
|
|
|
@@ -127,7 +127,7 @@ module HTTP2Next
|
|
|
127
127
|
# Frames with zero length with the END_STREAM flag set (that
|
|
128
128
|
# is, an empty DATA frame) MAY be sent if there is no available space
|
|
129
129
|
# in either flow control window.
|
|
130
|
-
return if window_size
|
|
130
|
+
return if window_size <= 0 && !(frame_size == 0 && end_stream)
|
|
131
131
|
|
|
132
132
|
@buffer.shift
|
|
133
133
|
|
data/lib/http/2/next/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: http-2-next
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tiago Cardoso
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2020-
|
|
13
|
+
date: 2020-03-06 00:00:00.000000000 Z
|
|
14
14
|
dependencies: []
|
|
15
15
|
description: Pure-ruby HTTP 2.0 protocol implementation
|
|
16
16
|
email:
|