Common/Network: Use std::array in IPv4Header.

This commit is contained in:
Admiral H. Curtiss 2022-05-23 02:01:59 +02:00
commit f68c3b758e
No known key found for this signature in database
GPG key ID: F051B4C4044F33FB
2 changed files with 4 additions and 4 deletions

View file

@ -58,8 +58,8 @@ struct IPv4Header
u8 ttl = 0;
u8 protocol = 0;
u16 header_checksum = 0;
u8 source_addr[IPV4_ADDR_LEN]{};
u8 destination_addr[IPV4_ADDR_LEN]{};
std::array<u8, IPV4_ADDR_LEN> source_addr{};
std::array<u8, IPV4_ADDR_LEN> destination_addr{};
};
static_assert(sizeof(IPv4Header) == IPv4Header::SIZE);