mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
617 B
30 lines
617 B
13 years ago
|
var common = require('../common');
|
||
|
var assert = require('assert');
|
||
|
var http = require('http');
|
||
|
|
||
|
var options = {
|
||
|
method: 'GET',
|
||
|
port: common.PORT,
|
||
|
host: '127.0.0.1',
|
||
|
path: '/'
|
||
|
};
|
||
|
|
||
|
var server = http.createServer(function(req, res) {
|
||
|
// this space intentionally left blank
|
||
|
});
|
||
|
|
||
|
server.listen(options.port, options.host, function() {
|
||
|
var req = http.request(options, function(res) {
|
||
|
// this space intentionally left blank
|
||
|
});
|
||
|
req.on('close', function() {
|
||
|
server.close();
|
||
|
});
|
||
|
function destroy() {
|
||
|
req.destroy();
|
||
|
}
|
||
|
req.setTimeout(1, destroy);
|
||
|
req.on('error', destroy);
|
||
|
req.end();
|
||
|
});
|