-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
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
GH-107812: extend socket
's netlink support to FreeBSD
#107813
Conversation
Most changes to Python require a NEWS entry. Please add it using the blurb_it web app or the blurb command-line tool. |
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.
I think that you have to declare AF_NETLINK something like this way, no?
cpython/Modules/socketmodule.h
Lines 98 to 105 in 0a7f48b
#ifdef HAVE_LINUX_NETLINK_H | |
# ifdef HAVE_ASM_TYPES_H | |
# include <asm/types.h> | |
# endif | |
# include <linux/netlink.h> | |
#else | |
# undef AF_NETLINK | |
#endif |
A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated. Once you have made the requested changes, please leave a comment on this pull request containing the phrase |
Thanks, i missed that bit. |
on FreeBSD, netlink.h lives under netlink. Extend the AC_HEADER_CHECK to look there as well.
I have made the requested changes; please review again! |
Thanks for making the requested changes! @corona10: please review the changes made to this pull request. |
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.
awesome, thanks @igalic!
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
this patch backports GH-107812: extend socket's netlink support to FreeBSD see python/cpython#107813 for the patch. see python/cpython#107812 for the discussion on the backport itself. Sponsored by: The FreeBSD Foundation
On FreeBSD,
netlink.h
lives under thenetlink
directory.Extend the
AC_CHECK_HEADERS
to look there as well.