toe_beans/v4/
mod.rs

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