We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bdcc82 commit 7d3afeaCopy full SHA for 7d3afea
UDP_Server_And_Client_Application/Programed_In_the_teacher's_way/Main.java
@@ -36,7 +36,6 @@ public static void handleClient() {
36
buffer = new byte[256]; //STEP 2
37
inPacket = new DatagramPacket(buffer, buffer.length); //STEP 3
38
datagramSocket.receive(inPacket); //STEP 4
39
-
40
clientAddress = inPacket.getAddress(); //STEP 5
41
clientPort = inPacket.getPort();
42
@@ -60,4 +59,4 @@ public static void handleClient() {
60
59
61
}
62
63
-}
+}
0 commit comments