-
Notifications
You must be signed in to change notification settings - Fork 688
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
feat: Get tcp_info
structure
#2615
base: master
Are you sure you want to change the base?
Conversation
Implement TCP_INFO option for getsockopt.
Hello, it looks like the CI is failing for two reasons:
The former is out of this PR's scope, so I won't address that here. However, I'd like advice on how to resolve the latter. Thank you! |
@@ -1268,6 +1268,17 @@ sockopt_impl!( | |||
libc::SO_EXCLBIND, | |||
bool | |||
); | |||
#[cfg(target_os = "linux")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi there
However, I'd like advice on how to resolve the latter.
If uClibc has that symbol, you can add it to the libc crate. Otherwise, we need to filter it out:
#[cfg(target_os = "linux")] | |
#[cfg(all(target_os = "linux", not(target_env = "uclibc")))] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added tcp_info
to the uClibc symbols in libc: rust-lang/libc@4a34937. It looks like the CI still isn't happy though, do you know if that's because the libc change isn't published to crates.io yet?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That PR rust-lang/libc#4347 added it to the main branch, Nix uses the libc-0.2
branch, so you need to ask the maintainer to backport it to this branch.
Once the backport PR gets merged, update the Cargo.toml
file to use it from git:
Line 31 in ea012be
libc = { version = "0.2.171", features = ["extra_traits"] } |
- libc = { version = "0.2.171", features = ["extra_traits"] }
+ libc = { git = "https://github.com/rust-lang/libc", rev = "the commit includes your libc PR", features = ... }
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it, thanks! I'll update this PR when the change is backported.
Will be addressed in #2610 |
This reverts commit 7e6cd7e.
Implement TCP_INFO option for getsockopt.
What does this PR do
Checklist:
CONTRIBUTING.md