deps: update llhttp to 9.3.0

llhttp@9.3.0 optimizes header value parsing on ARM Neon/WASM, and adds
support for a protocol callback for use outside of the typical HTTP
setting (RTSP/ICE).

PR-URL: https://github.com/nodejs/node/pull/58144
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
This commit is contained in:
Fedor Indutny 2025-05-07 07:21:52 -07:00 committed by GitHub
parent c96e96c765
commit 4454d09e8f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 1548 additions and 1580 deletions

View file

@ -47,7 +47,7 @@ server.listen(0, common.mustCall(() => {
assert.strictEqual(req.socket.listenerCount('end'), 1);
common.expectsError({
code: 'HPE_INVALID_CONSTANT',
message: 'Parse Error: Expected HTTP/'
message: 'Parse Error: Expected HTTP/, RTSP/ or ICE/'
})(e);
countdown.dec();
}));