diff options
author | runge <runge> | 2006-04-05 21:26:45 +0000 |
---|---|---|
committer | runge <runge> | 2006-04-05 21:26:45 +0000 |
commit | d14cf0a84c88a02222caad1692228584b610aacc (patch) | |
tree | 3482ef126e8b2bf3b9741f779539cfd74c77c698 /x11vnc/remote.c | |
parent | 1602b345f3e7e508b043133d5c289d9984e39f18 (diff) | |
download | libtdevnc-d14cf0a84c88a02222caad1692228584b610aacc.tar.gz libtdevnc-d14cf0a84c88a02222caad1692228584b610aacc.zip |
SSL Java viewer work thru proxy. -sslGenCA, etc key/cert management utils for x11vnc. FBPM "support".
Diffstat (limited to 'x11vnc/remote.c')
-rw-r--r-- | x11vnc/remote.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/x11vnc/remote.c b/x11vnc/remote.c index 4080554..7c68493 100644 --- a/x11vnc/remote.c +++ b/x11vnc/remote.c @@ -3173,6 +3173,21 @@ char *process_remote_cmd(char *cmd, int stringonly) { screen_blank, w); screen_blank = w; + } else if (!strcmp(p, "fbpm")) { + if (query) { + snprintf(buf, bufn, "ans=%s:%d", p, !watch_fbpm); + goto qry; + } + rfbLog("remote_cmd: turning off -nofbpm mode.\n"); + watch_fbpm = 0; + } else if (!strcmp(p, "nofbpm")) { + if (query) { + snprintf(buf, bufn, "ans=%s:%d", p, watch_fbpm); + goto qry; + } + rfbLog("remote_cmd: turning on -nofbpm mode.\n"); + watch_fbpm = 1; + } else if (strstr(p, "fs") == p) { COLON_CHECK("fs:") if (query) { |