2010-07-16 02:47:25 +08:00
|
|
|
common = require("../common");
|
|
|
|
assert = common.assert
|
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.
|
|
|
|
|
2010-08-13 11:23:41 +08:00
|
|
|
var server = http.createServer(function (req, res) {});
|
2010-07-16 02:47:25 +08:00
|
|
|
server.listen(common.PORT);
|
2010-01-11 14:04:40 +08:00
|
|
|
|
2010-08-13 11:23:41 +08:00
|
|
|
server.addListener("listening", function() {
|
|
|
|
net.createConnection(common.PORT).addListener("connect", function () {
|
2010-09-17 05:59:55 +08:00
|
|
|
this.destroy();
|
2010-08-13 11:23:41 +08:00
|
|
|
}).addListener("close", function () {
|
|
|
|
server.close();
|
|
|
|
});
|
2010-09-17 05:59:55 +08:00
|
|
|
});
|