2010-03-09 07:06:29 +08:00
|
|
|
require("../common");
|
2010-03-19 05:01:17 +08:00
|
|
|
net = require("net");
|
2010-03-20 10:22:04 +08:00
|
|
|
http = require("http");
|
2010-01-11 14:04:40 +08:00
|
|
|
|
|
|
|
// 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) {});
|
2010-02-27 04:06:32 +08:00
|
|
|
server.listen(PORT);
|
2010-01-11 14:04:40 +08:00
|
|
|
|
2010-03-19 05:01:17 +08:00
|
|
|
net.createConnection(PORT).addListener("connect", function () {
|
|
|
|
this.close();
|
2010-01-11 14:04:40 +08:00
|
|
|
}).addListener("close", function () {
|
|
|
|
server.close();
|
|
|
|
});
|