-
Notifications
You must be signed in to change notification settings - Fork 227
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: header_included_v6() and set_header_included_v6() #518
Conversation
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.
Can we do it in the same way as #432? Add a _v4
version and deprecating the no suffix version?
e824e46
to
70d2f72
Compare
Also, deprecate header_included() and set_header_included() in favor of header_included_v4() and set_header_included_v4().
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.
LGTM.
#[cfg_attr( | ||
any(target_os = "fuchsia", target_os = "illumos", target_os = "solaris"), | ||
allow(rustdoc::broken_intra_doc_links) | ||
)] |
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.
Why is this needed?
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.
Oh I see it's on set_header_included_v4
, hmmm.. ok to leave then for now.
#[cfg_attr( | ||
any(target_os = "fuchsia", target_os = "illumos", target_os = "solaris"), | ||
allow(rustdoc::broken_intra_doc_links) | ||
)] |
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.
Same here.
Thanks @jjnicola |
Thanks you @Thomasdezeeuw . |
Hi! do you know when this will be available in the crate? |
Broken since rust-lang#518 - looks like BSD operating systems don't support IP_HDRINCL at the IPPROTO_IPV6 socket level like Linux and Windows; this is causing CI to fail.
Broken since rust-lang#518 - looks like BSD operating systems don't support IP_HDRINCL at the IPPROTO_IPV6 socket level like Linux and Windows; this is causing CI to fail.
Broken since rust-lang#518 - looks like BSD operating systems don't support IP_HDRINCL at the IPPROTO_IPV6 socket level like Linux and Windows; this is causing CI to fail.
Also, deprecate header_included() and set_header_included() in favor of header_included_v4() and set_header_included_v4()
Close #517