Re-export dhcp::clientv4::Config

The dhcpv4 client currently doesn't expose the Config struct returned by the poll function.
v0.7.x
Robin Lambertz 2020-06-02 01:35:00 +02:00 committed by whitequark
parent d8c604f567
commit 0b3858cb31
1 changed files with 1 additions and 1 deletions

View File

@ -2,4 +2,4 @@ pub const UDP_SERVER_PORT: u16 = 67;
pub const UDP_CLIENT_PORT: u16 = 68;
mod clientv4;
pub use self::clientv4::Client as Dhcpv4Client;
pub use self::clientv4::{Client as Dhcpv4Client, Config as Dhcpv4Config};