-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Add the NI_IDN getnameinfo() extension #3433
Conversation
r? @JohnTitor (rustbot has picked a reviewer for you, use r? to override) |
Thank you! @bors r+ |
…itor Add the NI_IDN getnameinfo() extension This PR adds the `NI_IDN` getnameinfo extension. I've also tried to add the other two extensions (see: https://man7.org/linux/man-pages/man3/getnameinfo.3.html), but the tests would fail (`-Werror`) because those two are deprecated.
💔 Test failed - checks-actions |
CI fails because musl targets use Linux v4 kernel, could you skip the test for musl? A brief instruction is here: https://github.com/rust-lang/libc/blob/main/CONTRIBUTING.md#test-before-you-commit |
Let's see if I got it right. |
Yeah, it should work. Could you squash commits into one? |
afed7dd
to
900ef0d
Compare
900ef0d
to
d351b3b
Compare
Sure! |
Thank you! @bors r+ |
☀️ Test successful - checks-actions, checks-cirrus-freebsd-12, checks-cirrus-freebsd-13, checks-cirrus-freebsd-14 |
This PR adds the
NI_IDN
getnameinfo extension.I've also tried to add the other two extensions (see: https://man7.org/linux/man-pages/man3/getnameinfo.3.html), but the tests would fail (
-Werror
) because those two are deprecated.