-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
`http_parser_execute(..., nullptr, 0)` returns either `0` or `1`. The expectation is that no error must be returned if it is `0`, and if it is `1` - a `Error` object must be returned back to user. The introduction of `llhttp` and the refactor that happened during it accidentally removed the error-returning code. This commit reverts it back to its original state. Fix: #24585 PR-URL: #24738 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
- Loading branch information
Showing
2 changed files
with
55 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const net = require('net'); | ||
const http = require('http'); | ||
const assert = require('assert'); | ||
|
||
const str = 'GET / HTTP/1.1\r\n' + | ||
'Content-Length:'; | ||
|
||
|
||
const server = http.createServer(common.mustNotCall()); | ||
server.on('clientError', common.mustCall((err, socket) => { | ||
assert(/^Parse Error/.test(err.message)); | ||
assert.strictEqual(err.code, 'HPE_INVALID_EOF_STATE'); | ||
socket.destroy(); | ||
}, 1)); | ||
server.listen(0, () => { | ||
const client = net.connect({ port: server.address().port }, () => { | ||
client.on('data', common.mustNotCall()); | ||
client.on('end', common.mustCall(() => { | ||
server.close(); | ||
})); | ||
client.write(str); | ||
client.end(); | ||
}); | ||
}); |