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.
32 lines
856 B
32 lines
856 B
// Verify that net.Server.listenFD() can be used to accept connections on an
|
|
// already-bound, already-listening socket.
|
|
|
|
common = require("../common");
|
|
assert = common.assert
|
|
http = require('http');
|
|
netBinding = process.binding('net');
|
|
|
|
// Create an server and set it listening on a socket bound to common.PORT
|
|
var gotRequest = false;
|
|
var srv = http.createServer(function(req, resp) {
|
|
gotRequest = true;
|
|
|
|
resp.writeHead(200);
|
|
resp.end();
|
|
|
|
srv.close();
|
|
});
|
|
|
|
var fd = netBinding.socket('tcp4');
|
|
netBinding.bind(fd, common.PORT, '127.0.0.1');
|
|
netBinding.listen(fd, 128);
|
|
srv.listenFD(fd);
|
|
|
|
// Make an HTTP request to the server above
|
|
var hc = http.createClient(common.PORT, '127.0.0.1');
|
|
hc.request('/').end();
|
|
|
|
// Verify that we're exiting after having received an HTTP request
|
|
process.addListener('exit', function() {
|
|
assert.ok(gotRequest);
|
|
});
|
|
|