mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
093dfaf801
test/simple/test-url.js:31:(0110) Line too long (82 characters). test/simple/test-url.js:39:(0110) Line too long (85 characters). test/simple/test-url.js:40:(0110) Line too long (92 characters).
20 lines
636 B
JavaScript
20 lines
636 B
JavaScript
var common = require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
var 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.
|
|
|
|
var server = http.createServer(function(req, res) {});
|
|
server.listen(common.PORT);
|
|
|
|
server.addListener('listening', function() {
|
|
net.createConnection(common.PORT).addListener('connect', function() {
|
|
this.destroy();
|
|
}).addListener('close', function() {
|
|
server.close();
|
|
});
|
|
});
|