We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some hardware will pick IPV6 instead of IPV4 when setting a localAddress.
const opts = { host: host.replace(/^\[|\]$/g, ''), port, localAddress }; debug.proxyRequest('connecting to proxy target %o', opts); const target = net.connect(opts);
Should be
const opts = { host: host.replace(/^\[|\]$/g, ''), port, localAddress, family: {family (4 or 6)} }; debug.proxyRequest('connecting to proxy target %o', opts); const target = net.connect(opts);
I'll see to do a PR later.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some hardware will pick IPV6 instead of IPV4 when setting a localAddress.
const opts = { host: host.replace(/^\[|\]$/g, ''), port, localAddress }; debug.proxyRequest('connecting to proxy target %o', opts); const target = net.connect(opts);
Should be
const opts = { host: host.replace(/^\[|\]$/g, ''), port, localAddress, family: {family (4 or 6)} }; debug.proxyRequest('connecting to proxy target %o', opts); const target = net.connect(opts);
I'll see to do a PR later.
The text was updated successfully, but these errors were encountered: