@SuppressWarnings("unused")
int port = ARG_PORT.isSet() ? ARG_PORT.getValue() : 1527;
NetworkServerControlImpl server = new NetworkServerControlImpl();
int server_command = server.parseArgs(new String[]{command});
if (server_command == NetworkServerControlImpl.COMMAND_START) {
PrintWriter printWriter = getOutput().getPrintWriter();
server.setLogWriter(printWriter);
server.start(printWriter);