batman-robin 1.2.1

Rust library and CLI tool for interacting with the BATMAN-adv kernel module for mesh networking
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Internal netlink utilities for batman-adv.
//!
//! This module exposes low-level netlink helpers for building messages, attributes, and sockets.
//! These are **internal** and only used within the crate (`pub(crate)`).

mod attribute_builder;
mod message;
mod socket;

pub(crate) use attribute_builder::*;
pub(crate) use message::*;
pub(crate) use socket::*;