|
@@ -877,7 +877,7 @@ mod test {
|
|
|
0x00, 0x00, 0x39, 0x2, 0x5, 0xdc, 0x37, 0x04, 0x01, 0x03, 0x06, 0x2a, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
];
|
|
|
|
|
|
- static ACK_BYTES: &[u8] = &[
|
|
|
+ static ACK_DNS_SERVER_BYTES: &[u8] = &[
|
|
|
0x02, 0x01, 0x06, 0x00, 0xcc, 0x34, 0x75, 0xab, 0x00, 0x00, 0x80, 0x00, 0x0a, 0xff, 0x06, 0x91,
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0xff, 0x06, 0xfe, 0x34, 0x17, 0xeb, 0xc9,
|
|
|
0xaa, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
@@ -901,6 +901,11 @@ mod test {
|
|
|
0x01, 0x4a, 0x06, 0xa3, 0x01, 0x4a, 0x07, 0x2e, 0x01, 0x08, 0xff
|
|
|
];
|
|
|
|
|
|
+ static ACK_LEASE_TIME_BYTES: &[u8] = &[
|
|
|
+ // TODO: Fill out.
|
|
|
+ 0x00,
|
|
|
+ ];
|
|
|
+
|
|
|
const IP_NULL: Ipv4Address = Ipv4Address([0, 0, 0, 0]);
|
|
|
const CLIENT_MAC: EthernetAddress = EthernetAddress([0x0, 0x0b, 0x82, 0x01, 0xfc, 0x42]);
|
|
|
const DHCP_SIZE: u16 = 1500;
|
|
@@ -1051,8 +1056,9 @@ mod test {
|
|
|
|
|
|
#[test]
|
|
|
fn test_parse_ack_dns_servers() {
|
|
|
- let packet = Packet::new_unchecked(ACK_BYTES);
|
|
|
+ let packet = Packet::new_unchecked(ACK_DNS_SERVER_BYTES);
|
|
|
let repr = Repr::parse(&packet).unwrap();
|
|
|
+
|
|
|
// The packet described by ACK_BYTES advertises 4 DNS servers
|
|
|
// Here we ensure that we correctly parse the first 3 into our fixed
|
|
|
// length-3 array (see issue #305)
|
|
@@ -1061,4 +1067,14 @@ mod test {
|
|
|
Some(Ipv4Address([163, 1, 74, 7])),
|
|
|
Some(Ipv4Address([163, 1, 74, 3]))]));
|
|
|
}
|
|
|
+
|
|
|
+ #[test]
|
|
|
+ fn test_parse_ack_lease_duration() {
|
|
|
+ let packet = Packet::new_unchecked(ACK_LEASE_TIME_BYTES);
|
|
|
+ let repr = Repr::parse(&packet).unwrap();
|
|
|
+
|
|
|
+ // Verify that the lease time in the ACK is properly parsed. The packet contains a lease
|
|
|
+ // duration of 600s.
|
|
|
+ assert_eq!(repr.lease_duration, Some(600));
|
|
|
+ }
|
|
|
}
|