We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e351d46 commit c7072f7Copy full SHA for c7072f7
uefi-test-runner/src/proto/network/pxe.rs
@@ -26,8 +26,11 @@ pub fn test() {
26
27
assert!(base_code.mode().dhcp_ack_received());
28
let dhcp_ack: &DhcpV4Packet = base_code.mode().dhcp_ack().as_ref();
29
- let server_ip = dhcp_ack.bootp_si_addr;
30
- let server_ip = IpAddress::new_v4(server_ip);
+
+ info!("DHCP: Server IP: {:?}", dhcp_ack.bootp_si_addr);
31
+ info!("DHCP: Client IP: {:?}", dhcp_ack.bootp_yi_addr);
32
33
+ let server_ip = IpAddress::new_v4(dhcp_ack.bootp_si_addr);
34
35
const EXAMPLE_FILE_NAME: &[u8] = b"example-file.txt\0";
36
const EXAMPLE_FILE_CONTENT: &[u8] = b"Hello world!";
0 commit comments