Lines Matching full:vncserverport
2379 + int port, vncserverport;
2462 + // When there is a proxy VNCSERVERPORT may be inaccessible (inside firewall).
2463 + vncserverport = 0;
2464 + str = readParameter("VNCSERVERPORT", false);
2466 + vncserverport = Integer.parseInt(str);
2468 + if (port == 0 && vncserverport == 0) {
2469 + fatalError("Neither PORT nor VNCSERVERPORT parameters specified");
2472 + // Nevertheless, fall back to vncserverport if we have to.
2473 + System.out.println("using vncserverport: '" + vncserverport + "' for PORT.");
2474 + port = vncserverport;