DEV9: Sockets: Log correct UDP port

This commit is contained in:
TheLastRar 2022-10-23 17:49:00 +01:00 committed by lightningterror
parent 25107bd2db
commit 0ee28f3433
1 changed files with 3 additions and 3 deletions
pcsx2/DEV9

View File

@ -591,7 +591,7 @@ bool SocketAdapter::SendUDP(ConnectionKey Key, IP_Packet* ipPkt)
fKey.ps2Port = udp.sourcePort;
fKey.srvPort = 0;
Console.WriteLn("DEV9: Socket: Creating New UDPFixedPort with port %d", udp.sourcePort);
Console.WriteLn("DEV9: Socket: Creating New UDPFixedPort with port %d", udp.destinationPort);
fPort = new UDP_FixedPort(fKey, adapterIP, udp.sourcePort);
fPort->AddConnectionClosedHandler([&](BaseSession* session) { HandleFixedPortClosed(session); });
@ -603,14 +603,14 @@ bool SocketAdapter::SendUDP(ConnectionKey Key, IP_Packet* ipPkt)
fixedUDPPorts.Add(udp.sourcePort, fPort);
}
Console.WriteLn("DEV9: Socket: Creating New UDP Connection from FixedPort %d", udp.sourcePort);
Console.WriteLn("DEV9: Socket: Creating New UDP Connection from FixedPort %d", udp.destinationPort);
s = fPort->NewClientSession(Key,
ipPkt->destinationIP == dhcpServer.broadcastIP || ipPkt->destinationIP == IP_Address{255, 255, 255, 255},
(ipPkt->destinationIP.bytes[0] & 0xF0) == 0xE0);
}
else
{
Console.WriteLn("DEV9: Socket: Creating New UDP Connection to %d", udp.sourcePort);
Console.WriteLn("DEV9: Socket: Creating New UDP Connection to %d", udp.destinationPort);
s = new UDP_Session(Key, adapterIP);
}