mirror of https://github.com/PCSX2/pcsx2.git
DEV9: Sockets: Log correct UDP port
This commit is contained in:
parent
25107bd2db
commit
0ee28f3433
pcsx2/DEV9
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue