Lines Matching refs:port
34 const port = url.parse(msg.url).port;
35 ping(port, common.mustSucceed(() => {
39 firstPort = port;
45 const port = url.parse(msg.url).port;
46 // Reopen didn't do anything, the port was already open, and has not changed.
47 assert.strictEqual(port, firstPort);
48 ping(port, common.mustSucceed(() => {
73 const port = url.parse(msg.url).port;
74 ping(port, common.mustSucceed(() => {
79 function ping(port, callback) {
80 net.connect({ port, family: 4 })