Skip to content

Commit b881586

Browse files
committed
Minor client fix
1 parent f9c0951 commit b881586

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
0 Bytes
Binary file not shown.

src/main/java/com/distribsystems/p2p/Client.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ public class Client
1919
{
2020
public static void main(String[] args){
2121
Node node;
22-
String ip = "127.0.0.1";
23-
/*String ip = null;
22+
// String ip = "127.0.0.1";
23+
String ip = null;
2424
try {
2525
Enumeration e = NetworkInterface.getNetworkInterfaces();
2626
while(e.hasMoreElements())
@@ -39,7 +39,7 @@ public static void main(String[] args){
3939
//ip = InetAddress.getLocalHost().getHostAddress();
4040
} catch (SocketException e) {
4141
e.printStackTrace();
42-
}*/
42+
}
4343
int port = 8000;
4444

4545

0 commit comments

Comments
 (0)