summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrunge <runge>2004-12-23 04:55:10 +0000
committerrunge <runge>2004-12-23 04:55:10 +0000
commitc9a69485ec824ee4ceeb7d9d8a8d4ee3693da574 (patch)
tree2de1ddc11239a5d38b73256c9b77228231ace8d6
parent22ef536ce51b3135822f5422acf945da8b8cab88 (diff)
downloadlibtdevnc-c9a69485ec824ee4ceeb7d9d8a8d4ee3693da574.tar.gz
libtdevnc-c9a69485ec824ee4ceeb7d9d8a8d4ee3693da574.zip
x11vnc: need tkx11vnc and tkx11vnc.h in x11vnc package
-rw-r--r--x11vnc/README2
-rw-r--r--x11vnc/x11vnc.19
-rw-r--r--x11vnc/x11vnc.c13
3 files changed, 13 insertions, 11 deletions
diff --git a/x11vnc/README b/x11vnc/README
index b424684..c196ebf 100644
--- a/x11vnc/README
+++ b/x11vnc/README
@@ -1,5 +1,5 @@
-x11vnc README file Date: Wed Dec 22 23:18:56 EST 2004
+x11vnc README file Date: Thu Dec 23 00:52:20 EST 2004
The following information is taken from these URLs:
diff --git a/x11vnc/x11vnc.1 b/x11vnc/x11vnc.1
index 2f15efc..546f243 100644
--- a/x11vnc/x11vnc.1
+++ b/x11vnc/x11vnc.1
@@ -1132,10 +1132,11 @@ remote command, we hope the name makes it obvious what
the returned value corresponds to (hint: the ext_*
variables correspond to the presence of X extensions):
.IP
-ans= stop quit exit shutdown ping blacken zero refresh
-reset close disconnect id sid flashcmap noflashcmap
-truecolor notruecolor overlay nooverlay overlay_cursor
-overlay_yescursor nooverlay_cursor overlay_nocursor
+ans= stop quit exit shutdown ping blacken zero
+refresh reset close disconnect id sid flashcmap
+noflashcmap truecolor notruecolor overlay nooverlay
+overlay_cursor overlay_yescursor nooverlay_nocursor
+nooverlay_cursor nooverlay_yescursor overlay_nocursor
visual scale viewonly noviewonly shared noshared
forever noforever once deny lock nodeny unlock connect
allowonce allow localhost nolocalhost accept gone shm
diff --git a/x11vnc/x11vnc.c b/x11vnc/x11vnc.c
index 96781a5..959d42f 100644
--- a/x11vnc/x11vnc.c
+++ b/x11vnc/x11vnc.c
@@ -6006,7 +6006,7 @@ char *process_remote_cmd(char *cmd, int stringonly) {
}
} else if (!strcmp(p, "overlay_cursor") ||
- !strcmp(p, "overlay_yescursor")) {
+ !strcmp(p, "overlay_yescursor") || !strcmp(p, "nooverlay_nocursor")) {
if (query) {
snprintf(buf, bufn, "ans=%s:%d", p, overlay_cursor);
goto qry;
@@ -6023,7 +6023,7 @@ char *process_remote_cmd(char *cmd, int stringonly) {
"cursors.\n");
}
} else if (!strcmp(p, "nooverlay_cursor") ||
- !strcmp(p, "overlay_nocursor")) {
+ !strcmp(p, "nooverlay_yescursor") || !strcmp(p, "overlay_nocursor")) {
if (query) {
snprintf(buf, bufn, "ans=%s:%d", p, !overlay_cursor);
goto qry;
@@ -13845,10 +13845,11 @@ static void print_help(void) {
" the returned value corresponds to (hint: the ext_*\n"
" variables correspond to the presence of X extensions):\n"
"\n"
-" ans= stop quit exit shutdown ping blacken zero refresh\n"
-" reset close disconnect id sid flashcmap noflashcmap\n"
-" truecolor notruecolor overlay nooverlay overlay_cursor\n"
-" overlay_yescursor nooverlay_cursor overlay_nocursor\n"
+" ans= stop quit exit shutdown ping blacken zero\n"
+" refresh reset close disconnect id sid flashcmap\n"
+" noflashcmap truecolor notruecolor overlay nooverlay\n"
+" overlay_cursor overlay_yescursor nooverlay_nocursor\n"
+" nooverlay_cursor nooverlay_yescursor overlay_nocursor\n"
" visual scale viewonly noviewonly shared noshared\n"
" forever noforever once deny lock nodeny unlock connect\n"
" allowonce allow localhost nolocalhost accept gone shm\n"