toe-beans 0.10.0

DHCP library, client, and server
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// Used to send/receive Messages to/from a DHCP server.
#[cfg(feature = "v4_client")]
pub mod client;
mod error;
/// Information sent over a UDP connection between a DHCP client and server
pub mod message;
/// Used to send/receive Messages to/from a DHCP client.
#[cfg(feature = "v4_server")]
pub mod server;

#[cfg(feature = "v4_client")]
pub use client::*;
pub use error::Result;
pub use message::*;
#[cfg(feature = "v4_server")]
pub use server::*;