Fix ethernet addr in offline mode (#18756)

This commit is contained in:
RipleyTom 2026-05-18 11:14:41 +00:00 committed by GitHub
parent b0c1791a0c
commit 79cb35daa6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -420,7 +420,7 @@ namespace np
// IP & DNS info
std::string hostname = "localhost";
std::array<u8, 6> ether_address{};
std::array<u8, 6> ether_address{0xFF,0xFF,0xFF,0xFF,0xFF,0xFF};
be_t<u32> local_ip_addr{};
be_t<u32> public_ip_addr{};
be_t<u32> dns_ip = 0x08080808;