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;
5mod log;
6/// Information sent over a UDP connection between a DHCP client and server
7pub mod message;
8/// Used to send/receive Messages to/from a DHCP client.
9#[cfg(feature = "v4_server")]
10pub mod server;
11
12#[cfg(feature = "v4_client")]
13pub use client::*;
14pub use error::Result;
15pub use log::*;
16pub use message::*;
17#[cfg(feature = "v4_server")]
18pub use server::*;