mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-16 00:36:48 +00:00
14 lines
294 B
Rust
14 lines
294 B
Rust
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
//! Netlink Route Socket.
|
|
|
|
pub(super) use message::RtnlMessage;
|
|
|
|
use crate::net::socket::netlink::{common::NetlinkSocket, table::NetlinkRouteProtocol};
|
|
|
|
mod bound;
|
|
mod kernel;
|
|
mod message;
|
|
|
|
pub type NetlinkRouteSocket = NetlinkSocket<NetlinkRouteProtocol>;
|