mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-08 09:09:04 +00:00
Common/Network: Remove unused constructors
This commit is contained in:
parent
5ce73d9d2e
commit
13957a627c
2 changed files with 0 additions and 16 deletions
|
@ -194,7 +194,6 @@ static_assert(sizeof(ARPPacket) == ARPPacket::SIZE);
|
|||
struct TCPPacket
|
||||
{
|
||||
TCPPacket();
|
||||
TCPPacket(const MACAddress& destination, const MACAddress& source);
|
||||
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();
|
||||
|
@ -213,7 +212,6 @@ struct TCPPacket
|
|||
struct UDPPacket
|
||||
{
|
||||
UDPPacket();
|
||||
UDPPacket(const MACAddress& destination, const MACAddress& source);
|
||||
UDPPacket(const MACAddress& destination, const MACAddress& source, const sockaddr_in& from,
|
||||
const sockaddr_in& to, const std::vector<u8>& payload);
|
||||
std::vector<u8> Build();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue