Common/Network: Make Build() methods const

This commit is contained in:
Sepalani
2022-07-10 20:12:07 +04:00
parent d902b04ae0
commit 5fdf255a2d
3 changed files with 46 additions and 44 deletions

View File

@ -202,7 +202,7 @@ struct TCPPacket
TCPPacket();
TCPPacket(const MACAddress& destination, const MACAddress& source, const sockaddr_in& from,
const sockaddr_in& to, u32 seq, u32 ack, u16 flags);
std::vector<u8> Build();
std::vector<u8> Build() const;
u16 Size() const;
EthernetHeader eth_header;
@ -220,7 +220,7 @@ struct UDPPacket
UDPPacket();
UDPPacket(const MACAddress& destination, const MACAddress& source, const sockaddr_in& from,
const sockaddr_in& to, const std::vector<u8>& payload);
std::vector<u8> Build();
std::vector<u8> Build() const;
u16 Size() const;
EthernetHeader eth_header;