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
I'm using the library on Mac OS, and getting Os { code: 22, kind: InvalidInput, message: "Invalid argument" }. It happens because
Os { code: 22, kind: InvalidInput, message: "Invalid argument" }
let socket = Async::<UdpSocket>::bind(([0, 0, 0, 0], 0))?;
doesn't work when send_to IPv6 address. At least on MacOS
send_to
Bind to Ipv4Addr::UNSPECIFIED or Ipv6Addr::UNSPECIFIED depending on the foreign_addr type
Ipv4Addr::UNSPECIFIED
Ipv6Addr::UNSPECIFIED
foreign_addr
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I'm using the library on Mac OS, and getting
Os { code: 22, kind: InvalidInput, message: "Invalid argument" }
. It happens becausedoesn't work when
send_to
IPv6 address. At least on MacOSBind to
Ipv4Addr::UNSPECIFIED
orIpv6Addr::UNSPECIFIED
depending on theforeign_addr
typeThe text was updated successfully, but these errors were encountered: