You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Linux hp 6.11.0-19-generic #19~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Mon Feb 17 11:51:52 UTC 2 x86_64 x86_64 x86_64 GNU/Linux
Subsystem
http2
Description
Please help with the following problem I am experiencing, which is that a NodeJS proxy server is rejecting a CONNECT method from a client, with the error message "Invalid HTTP header field was received: frame type: 1, stream: 1, name: [:authority], value: [nghttp2.org:443]", but as far as I can tell, the :authority header is ok.
A HTTP2 client connects to a HTTP2 proxy server using h2c. It sends the following:
a) A preface (24-byte octets "PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n")
b) A SETTINGS frame - Max concurrent streams : 100
c) A HEADERS frame for stream 1 - :method: CONNECT and :authority: nghttp2.org:443
The server responds with its own SETTINGS - default settings
The client ACK's the server's SETTINGS
The server ACK's the client's SETTINGS and RST_STREAM the client's stream 1 (see 1(c) above).
According to the debugging messages produced by the server by setting NODE_DEBUG_NATIVE=http2, the reason for the server to RST_STREAM is as follows, but as far as I can tell, there's nothing wrong with the :authority header.
'Invalid HTTP header field was received: frame type: 1, stream: 1, name: [:authority], value: [nghttp2.org:443]'
I tried to attach herewith the following 3 files, but only succeeded with (a), and both (b) and (c) failed to upload.
a) The debugging messages produced by the server
b) A PDF showing the exchanges between the client and the server captured by Wireshark
c) A PDF showing only the HTTP2 exchanges between the client and the server captured by Wireshark
Node.js Version
v22.14.0
NPM Version
v10.9.2
Operating System
Linux hp 6.11.0-19-generic #19~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Mon Feb 17 11:51:52 UTC 2 x86_64 x86_64 x86_64 GNU/Linux
Subsystem
http2
Description
Please help with the following problem I am experiencing, which is that a NodeJS proxy server is rejecting a CONNECT method from a client, with the error message "Invalid HTTP header field was received: frame type: 1, stream: 1, name: [:authority], value: [nghttp2.org:443]", but as far as I can tell, the :authority header is ok.
A HTTP2 client connects to a HTTP2 proxy server using h2c. It sends the following:
a) A preface (24-byte octets "PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n")
b) A SETTINGS frame - Max concurrent streams : 100
c) A HEADERS frame for stream 1 - :method: CONNECT and :authority: nghttp2.org:443
The server responds with its own SETTINGS - default settings
The client ACK's the server's SETTINGS
The server ACK's the client's SETTINGS and RST_STREAM the client's stream 1 (see 1(c) above).
According to the debugging messages produced by the server by setting NODE_DEBUG_NATIVE=http2, the reason for the server to RST_STREAM is as follows, but as far as I can tell, there's nothing wrong with the :authority header.
'Invalid HTTP header field was received: frame type: 1, stream: 1, name: [:authority], value: [nghttp2.org:443]'
a) The debugging messages produced by the server
b) A PDF showing the exchanges between the client and the server captured by Wireshark
c) A PDF showing only the HTTP2 exchanges between the client and the server captured by Wireshark
proxy_debug_msgs.log
Minimal Reproduction
No response
Output
'Invalid HTTP header field was received: frame type: 1, stream: 1, name: [:authority], value: [nghttp2.org:443]'
Before You Submit
The text was updated successfully, but these errors were encountered: