oxnet 0.1.4

commonly used networking primitives with common traits implemented
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2024 Oxide Computer Company

#![forbid(unsafe_code)]
#![deny(missing_docs)]
#![doc = include_str!("../README.md")]

mod ipnet;
mod multicast;
#[cfg(feature = "schemars")]
mod schema_util;

pub use ipnet::{
    IpNet, IpNetParseError, IpNetPrefixError, Ipv4Net, Ipv6Net, IPV4_NET_WIDTH_MAX,
    IPV6_NET_WIDTH_MAX,
};
pub use multicast::MulticastMac;