Skip to content

Commit

Permalink
Update list server details to nectar.
Browse files Browse the repository at this point in the history
  • Loading branch information
philackm committed Oct 19, 2016
1 parent d3c05da commit 196b21a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion strike-client/src/main/java/strike/controller/Login.java
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,14 @@ private void initialize() {
sslsocketfactory = (SSLSocketFactory) SSLSocketFactory.getDefault();

try {
socket = (SSLSocket) sslsocketfactory.createSocket("localhost", 4444); //s1 // Need to change this to the designated serverlist server.
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
// This server needs to be running or else we cannot get the server list!
socket = (SSLSocket) sslsocketfactory.createSocket("115.146.90.37", 4440);

// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
// To run locally, use this socket instead!
// socket = (SSLSocket) sslsocketfactory.createSocket("localhost", 4444);

socket.startHandshake();
}
catch(IOException e) {
Expand Down

0 comments on commit 196b21a

Please sign in to comment.