Skip to content

Commit a240d45

Browse files
ZYSzysBridgeAR
authored andcommitted
http2: support passing options of http2.connect to net.connect
PR-URL: #29816 Fixes: #29811 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Jiawen Geng <[email protected]>
1 parent 90562ae commit a240d45

File tree

3 files changed

+44
-2
lines changed

3 files changed

+44
-2
lines changed

lib/internal/http2/core.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2920,7 +2920,7 @@ function connect(authority, options, listener) {
29202920
} else {
29212921
switch (protocol) {
29222922
case 'http:':
2923-
socket = net.connect(options.port || port, options.host || host);
2923+
socket = net.connect({ port, host, ...options });
29242924
break;
29252925
case 'https:':
29262926
socket = tls.connect(port, host, initializeTLSOptions(options, host));

test/parallel/test-http2-client-port-80.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const net = require('net');
1111

1212
const connect = net.connect;
1313
net.connect = common.mustCall((...args) => {
14-
assert.strictEqual(args[0], '80');
14+
assert.strictEqual(args[0].port, '80');
1515
return connect(...args);
1616
});
1717

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
// Flags: --expose-internals
2+
'use strict';
3+
const common = require('../common');
4+
if (!common.hasCrypto)
5+
common.skip('missing crypto');
6+
7+
if (!common.hasMultiLocalhost())
8+
common.skip('platform-specific test.');
9+
10+
const http2 = require('http2');
11+
const assert = require('assert');
12+
13+
const server = http2.createServer((req, res) => {
14+
console.log(`Connect from: ${req.connection.remoteAddress}`);
15+
assert.strictEqual(req.connection.remoteAddress, '127.0.0.2');
16+
17+
req.on('end', common.mustCall(() => {
18+
res.writeHead(200, { 'Content-Type': 'text/plain' });
19+
res.end(`You are from: ${req.connection.remoteAddress}`);
20+
}));
21+
req.resume();
22+
});
23+
24+
server.listen(0, '127.0.0.1', common.mustCall(() => {
25+
const options = { localAddress: '127.0.0.2' };
26+
27+
const client = http2.connect(
28+
'http://localhost:' + server.address().port,
29+
options
30+
);
31+
const req = client.request({
32+
':path': '/'
33+
});
34+
req.on('data', () => req.resume());
35+
req.on('end', common.mustCall(function() {
36+
client.close();
37+
req.close();
38+
server.close();
39+
process.exit();
40+
}));
41+
req.end();
42+
}));

0 commit comments

Comments
 (0)