You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
System.out.println("SERVER >> Data received from "+address.getHostName()+":"+port+" using "+ protocolType.name() +"("+ packet.getData().length +" bytes"+")");
System.out.println("SERVER >> Data received from "+connection.getTcpSocket().getInetAddress()+":"+(protocolType ==ProtocolType.TCP? connection.getTcpSocket().getPort() : connection.getUdpPort().get())+" using "+ protocolType.name() +"("+ packet.getData().length +" bytes"+")");
140
110
try {
141
111
processPacket(packet);
142
112
} catch (Exception e) {
@@ -145,8 +115,8 @@ public static IServerListener createServerListener() {
System.out.println("SERVER >> Data sent to "+address.getHostName()+":"+port+" using "+ protocolType.name() +"("+ packet.getData().length +" bytes"+")");
System.out.println("SERVER >> Data sent to "+connection.getTcpSocket().getInetAddress()+":"+(protocolType ==ProtocolType.TCP? connection.getTcpSocket().getPort() : connection.getUdpPort().get())+" using "+ protocolType.name() +"("+ packet.getData().length +" bytes"+")");
0 commit comments