protocol-http1 0.32.0 → 0.34.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1908561ca0c3707f9e64cbb12c5014c03858f2655dbb4fab1fe18cd31113272c
4
- data.tar.gz: 113d3d3b14b2e4258c4bbcb401ff0fefe07921d85edd231c395d0121f9c8c026
3
+ metadata.gz: 2a4b695a7ab64f24291608bea0c5cfc63bc0f4ad2c8a43f6056b7c94b2c5e04d
4
+ data.tar.gz: 8f832a2d5c95ba99d0414388d0e39fa1089029811869065e008c4f5154fda3b5
5
5
  SHA512:
6
- metadata.gz: 47d9919aa52376eb982b92a08dc33038e8fd6f201efee3c6b4da0b9f9b4acf2d7dee5bc6ae3023ab28067ec377ac302fc63d679f7113819e907272b5234b8b93
7
- data.tar.gz: 47e13c906b80c14b9bb85abfc367daef71392454c1f7d1b2629afa8b1fbbdf51cf0c80d3e1d65599d25e46cc2cac517c00580b7ae7b8a55a09e5fe9521b0534f
6
+ metadata.gz: 4ab3b82afa6cb3d943b3cf6343c0d4d1050e706a610b7a6cb5f560e428f2d94e94b1a51ae4ba65b284a3f112c5fd415b5597dd66aea572e3cd9d35293f86e04d
7
+ data.tar.gz: 8dc16b3d684f60cdded074e0abdcd211865f229c6769bb568700fa41c986e71ce52be260937ccf9a7090672faa2fdbba3ddeb429f22797ecbe33c88adf28f1f1
checksums.yaml.gz.sig CHANGED
Binary file
@@ -37,14 +37,13 @@ module Protocol
37
37
 
38
38
  # HTTP/1.x header parser:
39
39
  FIELD_NAME = TOKEN
40
- WS = /[ \t]/ # Whitespace.
41
- OWS = /#{WS}*/ # Optional whitespace.
42
- VCHAR = /[!-~]/ # Match visible characters from ASCII 33 to 126.
43
- FIELD_VALUE = /#{VCHAR}+(?:#{WS}+#{VCHAR}+)*/.freeze
40
+ OWS = /[ \t]*/
41
+ # A field value is any string of characters that does not contain a null character, CR, or LF. After reflecting on the RFCs and surveying real implementations, I came to the conclusion that the RFCs are too restrictive. Most servers only check for the presence of null bytes, and obviously CR/LF characters have semantic meaning in the parser. So, I decided to follow this defacto standard, even if I'm not entirely happy with it.
42
+ FIELD_VALUE = /[^\0\r\n]+/.freeze
44
43
  HEADER = /\A(#{FIELD_NAME}):#{OWS}(?:(#{FIELD_VALUE})#{OWS})?\z/.freeze
45
44
 
46
45
  VALID_FIELD_NAME = /\A#{FIELD_NAME}\z/.freeze
47
- VALID_FIELD_VALUE = /\A#{FIELD_VALUE}\z/.freeze
46
+ VALID_FIELD_VALUE = /\A#{FIELD_VALUE}?\z/.freeze
48
47
 
49
48
  DEFAULT_MAXIMUM_LINE_LENGTH = 8192
50
49
 
@@ -5,6 +5,6 @@
5
5
 
6
6
  module Protocol
7
7
  module HTTP1
8
- VERSION = "0.32.0"
8
+ VERSION = "0.34.0"
9
9
  end
10
10
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: protocol-http1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.32.0
4
+ version: 0.34.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
metadata.gz.sig CHANGED
Binary file