dhcprs/
lib.rs

1//! DHCP/BOOTP packet encode/decode library.
2//!
3//! The purpose of this library is to provide an easy to use interface over
4//! DHCP, BOOTP and UDP packets to enable the creation of programs that
5//! make use of DHCP.
6//!
7//! BOOTP specific functionality is provided by the `dhcprs::bootp` module
8//! DHCP specific functionality is provided by the `dhcprs::dhcp` module
9//!
10//! There is additionally simple UDP packet encode/decode provided by the
11//! `dhcprs::udpbuilder`.
12
13pub mod bootp;
14pub mod dhcp;
15pub mod udpbuilder;