Skip to content
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

Netlink support for FreeBSD 13.2 #3201

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Commits on Aug 28, 2024

  1. freebsd: move net/if_mib.h contents to submodule

    There is a conflict of NETLINK_GENERIC definitions between
    net/if_mib.h and netlink/netlink.h.  netlink.h is already exported in
    the crate root for Linux (and those definitions are already used by at
    least crates neli and netlink-packet-route), and if_mib is not much
    used yet, so this moves if_mib contents into its own namespace to
    leave place for netlink support on FreeBSD (rust-lang#3194).
    
    Module definition moved to the end of file to avoid cryptic style.rs
    error "constant found after module when it belongs before".
    
    ctest as of 0.22 cannot be told a given header's symbols live in a
    submodule, so let the tests ignore all of them.
    
    Signed-off-by: Yann Dirson <[email protected]>
    ydirson committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    ae16a69 View commit details
    Browse the repository at this point in the history
  2. Netlink support for FreeBSD 13.2 and later

    This is an early subset of the Netlink interface, but it
    proves sufficient for monitoring changes in IP addresses,
    the coverage can be extended later as needed.
    
    Signed-off-by: Yann Dirson <[email protected]>
    ydirson committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    98d71b4 View commit details
    Browse the repository at this point in the history