Skip to content

Commit

Permalink
Viewer: More parameter documentation tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
dcommander committed Feb 1, 2025
1 parent eb84b26 commit 723bba7
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions java/com/turbovnc/rfb/Params.java
Original file line number Diff line number Diff line change
Expand Up @@ -641,8 +641,8 @@ public void save(String node) {
"When using the Tunnel parameter or the Jump parameter" +
(Utils.getBooleanProperty("turbovnc.sessmgr", true) ?
" or the TurboVNC Session Manager, " : ", ") +
"the SSH username (default = local username) can be specified by " +
"prefixing the VNC host with the username followed by @.\n " +
"an SSH username (default = local username) can be specified by prefixing " +
"the VNC host with the username followed by @.\n " +

"In Unix domain socket paths, ~ is expanded to the user's home directory " +
"on the VNC host, %h is expanded to the VNC host name (from the point of " +
Expand Down Expand Up @@ -1257,7 +1257,8 @@ public void save(String node) {

(Utils.getBooleanProperty("turbovnc.sessmgr", true) ?
"When using the TurboVNC Session Manager, this parameter is effectively " +
"set unless the SessMgrAuto parameter is disabled.\n " : "") +
"set unless the SessMgrAuto parameter is disabled or the Jump parameter " +
"is specified.\n " : "") +

"This parameter is effectively set if the Server parameter specifies a " +
"Unix domain socket connection to a remote host.", false);
Expand All @@ -1274,8 +1275,8 @@ public void save(String node) {
public ServerNameParameter via =
new ServerNameParameter("Via", this, false, true,
"Tunnel the VNC connection through the specified SSH server, or forward " +
"the VNC connection through the specified UltraVNC repeater " +
"(\"gateway.\") The gateway can be specified in the format " +
"the VNC connection through the specified UltraVNC repeater. The SSH " +
"server or UltraVNC repeater (\"gateway\") can be specified in the format " +
"[{ssh_user}@]{gateway_host}, {gateway_host}:{repeater_display_number}, " +
"or {gateway_host}::{repeater_port}, where {ssh_user} is the SSH username " +
"on the gateway host (default = local username). When using this " +
Expand Down

0 comments on commit 723bba7

Please sign in to comment.