Skip to content

Commit 06d356a

Browse files
Fix parser error.
Header to drop is 'proxy-connection' not 'proxy_connection'
1 parent 6154350 commit 06d356a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fw/http_parser.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10213,7 +10213,7 @@ __FSM_STATE(st, cold) { \
1021310213

1021410214
__FSM_H2_TX_AF(Req_HdrPro, 'x', Req_HdrProx);
1021510215
__FSM_H2_TX_AF(Req_HdrProx, 'y', Req_HdrProxy);
10216-
__FSM_H2_TX_AF(Req_HdrProxy, '_', Req_HdrProxy_);
10216+
__FSM_H2_TX_AF(Req_HdrProxy, '-', Req_HdrProxy_);
1021710217
__FSM_H2_TX_AF(Req_HdrProxy_, 'c', Req_HdrProxy_C);
1021810218
__FSM_H2_TX_AF(Req_HdrProxy_C, 'o', Req_HdrProxy_Co);
1021910219
__FSM_H2_TX_AF(Req_HdrProxy_Co, 'n', Req_HdrProxy_Con);

0 commit comments

Comments
 (0)