// Connect to server and open I/O streams
server = configureSCSSocket();
input = new DataInputStream(server.getInputStream());
output = new DataOutputStream(server.getOutputStream());
auth = new Auth(input, output, config);
int authorization = auth.auth();
if (authorization != AuthenticationToken.LOGIN_SUCCESFUL) {
// Authorization failed write message to stdout and terminate server with error code
System.out.println("Autorization failed: " +