}
}
else if (args.length > 0 && args[0].equalsIgnoreCase("c")) {
System.out.println("client mode started");
try {
BaseClient c = new ConsoleClient("localhost", port);
String text = reader.readLine();
while (!text.equalsIgnoreCase("q") && !text.equalsIgnoreCase("quit")) {
c.Send(text);
text = reader.readLine();
}
c.Close();
} catch (IOException e) {
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
}
}
else {