-
Notifications
You must be signed in to change notification settings - Fork 670
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
Fix socket address family checks #1736
Conversation
Ahh, thank you. That's probably a copy/paste error on my part. Could you please add a "Fixed" entry to CHANGELOG? |
Done. |
@asomers any idea what's going on with the FreeBSD 14 timeouts? I've noticed that on a few recent PRs. I have a fix submitted for Haiku, we're just waiting on a new nightly rustc to be available. |
No, I saw that too but I haven't had time to investigate yet. |
It looks like |
@asomers this seems like another patch candidate. |
bors r+ |
Hi, any idea when you plan to push a release with this fix included? |
I think the only remaining issue that we should consider for a patch release is #1709 , if indeed that turns out to be a bug in Nix. |
@qwandor this should be in a 0.24.2 patch release now. |
The
SockaddrLike::from_raw
implementations forVsockAddr
andSysControlAddr
were checking against the wrong address family constant. This PR makes them consistent with the values matched against inSockaddrStorage::from_raw
.