diff options
author | runge <runge> | 2009-01-04 03:10:39 +0000 |
---|---|---|
committer | runge <runge> | 2009-01-04 03:10:39 +0000 |
commit | 4fdb4cc67f1563156593e5b3deca80acf35f39ed (patch) | |
tree | 18a6d6ddc102aa3c91ed8bd24c863893b8f8de1b /x11vnc/remote.c | |
parent | 6876b85df3abc71feb26ce85bf2ef3bfae001af2 (diff) | |
download | libtdevnc-4fdb4cc67f1563156593e5b3deca80acf35f39ed.tar.gz libtdevnc-4fdb4cc67f1563156593e5b3deca80acf35f39ed.zip |
x11vnc: add -rmflag option, -rawfb vt support, bpp < 8 support
for rawfb, find /dev/video better. Fix reverse SSL connection
for DH. Some improvements for CUPS TS helper, restart if needed.
Diffstat (limited to 'x11vnc/remote.c')
-rw-r--r-- | x11vnc/remote.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/x11vnc/remote.c b/x11vnc/remote.c index 689f9b0..8aada19 100644 --- a/x11vnc/remote.c +++ b/x11vnc/remote.c @@ -5248,6 +5248,10 @@ char *process_remote_cmd(char *cmd, int stringonly) { snprintf(buf, bufn, "aro=%s:%s", p, NONUL(flagfile)); goto qry; } + if (!strcmp(p, "rmflag")) { + snprintf(buf, bufn, "aro=%s:%s", p, NONUL(rm_flagfile)); + goto qry; + } if (!strcmp(p, "rc")) { char *s = rc_rcfile; if (rc_rcfile_default) { |