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
828 B
30 lines
828 B
'use strict';
|
|
const common = require('../common');
|
|
var http = require('http');
|
|
|
|
var invalidLocalAddress = '1.2.3.4';
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
console.log('Connect from: ' + req.connection.remoteAddress);
|
|
|
|
req.on('end', function() {
|
|
res.writeHead(200, { 'Content-Type': 'text/plain' });
|
|
res.end('You are from: ' + req.connection.remoteAddress);
|
|
});
|
|
req.resume();
|
|
});
|
|
|
|
server.listen(0, '127.0.0.1', common.mustCall(function() {
|
|
http.request({
|
|
host: 'localhost',
|
|
port: this.address().port,
|
|
path: '/',
|
|
method: 'GET',
|
|
localAddress: invalidLocalAddress
|
|
}, function(res) {
|
|
common.fail('unexpectedly got response from server');
|
|
}).on('error', common.mustCall(function(e) {
|
|
console.log('client got error: ' + e.message);
|
|
server.close();
|
|
})).end();
|
|
}));
|
|
|