mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
17 lines
512 B
JavaScript
17 lines
512 B
JavaScript
require("../common");
|
|
tcp = require("tcp");
|
|
http = require("http");
|
|
|
|
// This is a regression test for http://github.com/ry/node/issues/#issue/44
|
|
// It is separate from test-http-malformed-request.js because it is only
|
|
// reproduceable on the first packet on the first connection to a server.
|
|
|
|
server = http.createServer(function (req, res) {});
|
|
server.listen(PORT);
|
|
|
|
tcp.createConnection(PORT).addListener("connect", function () {
|
|
this.close();
|
|
}).addListener("close", function () {
|
|
server.close();
|
|
});
|