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.
27 lines
663 B
27 lines
663 B
'use strict';
|
|
const common = require('../common');
|
|
const net = require('net');
|
|
const http = require('http');
|
|
|
|
var server = net.createServer(function(socket) {
|
|
socket.end();
|
|
});
|
|
|
|
server.on('listening', common.mustCall(function() {
|
|
var client = http.createClient(common.PORT);
|
|
|
|
client.on('error', common.mustCall(function(err) {}));
|
|
client.on('end', common.mustCall(function() {}));
|
|
|
|
var request = client.request('GET', '/', {'host': 'localhost'});
|
|
request.end();
|
|
request.on('response', function(response) {
|
|
console.log('STATUS: ' + response.statusCode);
|
|
});
|
|
}));
|
|
|
|
server.listen(common.PORT);
|
|
|
|
setTimeout(function() {
|
|
server.close();
|
|
}, 500);
|
|
|