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
When trying to connect to a peer using an IPv6 address like so
dtls.connect({ type: 'udp6', remotePort: 5684, remoteAddress: 'fe80::260a:c4ff:feea:20f0' });
I get the following error:
node:events:356 throw er; // Unhandled 'error' event ^ Error: bind EINVAL 0.0.0.0 at node:dgram:341:20 at processTicksAndRejections (node:internal/process/task_queues:82:21) Emitted 'error' event on Socket instance at: at node:dgram:343:14 at processTicksAndRejections (node:internal/process/task_queues:82:21) { errno: -4071, code: 'EINVAL', syscall: 'bind', address: '0.0.0.0' }
It seems to me as if the library does not bind to :: in the IPv6 case but uses IPv4's 0.0.0.0 instead.
::
0.0.0.0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When trying to connect to a peer using an IPv6 address like so
I get the following error:
It seems to me as if the library does not bind to
::
in the IPv6 case but uses IPv4's0.0.0.0
instead.The text was updated successfully, but these errors were encountered: