pub use *;
pub use *;
/// The standard port for dhcpv4 clients defined in the RFC.
pub const CLIENT_PORT: u16 = 68;
/// This is an arbitrary port number above 1024 that can be used when testing the client.
/// Port numbers below 1024 are privileged ports that require admin access to bind to.
/// See: <https://www.w3.org/Daemon/User/Installation/PrivilegedPorts.html>
pub const TEST_CLIENT_PORT: u16 = 8068;
/// Resolves to TEST_PORT for debug builds and PORT for release builds
pub const RESOLVED_CLIENT_PORT: u16 = if cfg! else ;