-
Notifications
You must be signed in to change notification settings - Fork 29.8k
New issue
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
TLS localAddress bind not working #1728
Labels
tls
Issues and PRs related to the tls subsystem.
Comments
If you have a var cleartext = tls.connect({ socket: socket }, function() {
console.log('TLS negotatiated!');
});
socket.connect({
host: 'example.org',
port: 1337,
localAddress: '192.168.100.105'
}); If you don't need to explicitly create a var socket = tls.connect({
host: 'example.org',
port: 1337,
localAddress: '192.168.100.105'
}, function() {
console.log('TLS negotiated!');
}); |
Closing due to inactivity |
This was referenced May 24, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
i have a net.Socket object and an TLS connection object. I have multiple ips on my machine, how can i bind on one of them by choice, here's what i'ved tried:
The text was updated successfully, but these errors were encountered: