소스 검색

Re-export dhcp::clientv4::Config

The dhcpv4 client currently doesn't expose the Config struct returned by the poll function.
Robin Lambertz 4 년 전
부모
커밋
3a9625336c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/dhcp/mod.rs

+ 1 - 1
src/dhcp/mod.rs

@@ -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};