main.c: XReadScreen check, fix 64bit use of cursors, x11vnc: first round of beta-testing fixes, RFE's.

pull/1/head
runge 19 years ago
parent 50568f1a81
commit 543e64d3c6

@ -1,3 +1,8 @@
2005-06-14 Karl Runge <runge@karlrunge.com>
* configure.ac: XReadScreen and XReadDisplay checks.
* libvncserver/cursor.c: fix unsigned long crash for 64bits.
* x11vnc: first round of beta-testing fixes, RFE's.
2005-06-10 Johannes E. Schindelin <Johannes.Schindelin@gmx.de> 2005-06-10 Johannes E. Schindelin <Johannes.Schindelin@gmx.de>
* configure.ac: fix that annoying SUN /usr/ccs location of "ar" * configure.ac: fix that annoying SUN /usr/ccs location of "ar"

@ -58,6 +58,8 @@ AH_TEMPLATE(HAVE_LIBXFIXES, [XFIXES extension build environment present])
AH_TEMPLATE(HAVE_LIBXDAMAGE, [XDAMAGE extension build environment present]) AH_TEMPLATE(HAVE_LIBXDAMAGE, [XDAMAGE extension build environment present])
AH_TEMPLATE(HAVE_LIBXTRAP, [DEC-XTRAP extension build environment present]) AH_TEMPLATE(HAVE_LIBXTRAP, [DEC-XTRAP extension build environment present])
AH_TEMPLATE(HAVE_RECORD, [RECORD extension build environment present]) AH_TEMPLATE(HAVE_RECORD, [RECORD extension build environment present])
AH_TEMPLATE(HAVE_SOLARIS_XREADSCREEN, [Solaris XReadScreen available])
AH_TEMPLATE(HAVE_IRIX_XREADDISPLAY, [IRIX XReadDisplay available])
if test "$X_CFLAGS" != "-DX_DISPLAY_MISSING"; then if test "$X_CFLAGS" != "-DX_DISPLAY_MISSING"; then
AC_CHECK_LIB(X11, XGetImage, HAVE_X="true", AC_CHECK_LIB(X11, XGetImage, HAVE_X="true",
HAVE_X="false", HAVE_X="false",
@ -70,6 +72,14 @@ if test "$X_CFLAGS" != "-DX_DISPLAY_MISSING"; then
[AC_DEFINE(HAVE_XSHM)], , [AC_DEFINE(HAVE_XSHM)], ,
$X_LIBS $X_PRELIBS -lX11 $X_EXTRA_LIBS) $X_LIBS $X_PRELIBS -lX11 $X_EXTRA_LIBS)
AC_CHECK_LIB(Xext, XReadScreen,
[AC_DEFINE(HAVE_SOLARIS_XREADSCREEN)], ,
$X_LIBS $X_PRELIBS -lX11 $X_EXTRA_LIBS)
AC_CHECK_HEADER(X11/extensions/readdisplay.h,
[AC_DEFINE(HAVE_IRIX_XREADDISPLAY)], ,
[#include <X11/Xlib.h>])
AC_CHECK_LIB(Xtst, XTestGrabControl, AC_CHECK_LIB(Xtst, XTestGrabControl,
X_PRELIBS="$X_PRELIBS -lXtst" X_PRELIBS="$X_PRELIBS -lXtst"
[AC_DEFINE(HAVE_XTESTGRABCONTROL) HAVE_XTESTGRABCONTROL="true"], , [AC_DEFINE(HAVE_XTESTGRABCONTROL) HAVE_XTESTGRABCONTROL="true"], ,

@ -525,7 +525,7 @@ void rfbShowCursor(rfbClientPtr cl)
int gmax, gshift; int gmax, gshift;
int bmax, bshift; int bmax, bshift;
int amax = 255; /* alphaSource is always 8bits of info per pixel */ int amax = 255; /* alphaSource is always 8bits of info per pixel */
unsigned long rmask, gmask, bmask; unsigned int rmask, gmask, bmask;
rmax = s->serverFormat.redMax; rmax = s->serverFormat.redMax;
gmax = s->serverFormat.greenMax; gmax = s->serverFormat.greenMax;
@ -544,8 +544,9 @@ void rfbShowCursor(rfbClientPtr cl)
* we loop over the whole cursor ignoring c->mask[], * we loop over the whole cursor ignoring c->mask[],
* using the extracted alpha value instead. * using the extracted alpha value instead.
*/ */
char *dest, *src, *aptr; char *dest;
unsigned long val, *dv, *sv; unsigned char *src, *aptr;
unsigned int val, dval, sval;
int rdst, gdst, bdst; /* fb RGB */ int rdst, gdst, bdst; /* fb RGB */
int asrc, rsrc, gsrc, bsrc; /* rich source ARGB */ int asrc, rsrc, gsrc, bsrc; /* rich source ARGB */
@ -553,23 +554,42 @@ void rfbShowCursor(rfbClientPtr cl)
src = c->richSource + (j+j1)*c->width*bpp + (i+i1)*bpp; src = c->richSource + (j+j1)*c->width*bpp + (i+i1)*bpp;
aptr = c->alphaSource + (j+j1)*c->width + (i+i1); aptr = c->alphaSource + (j+j1)*c->width + (i+i1);
dv = (unsigned long *)dest; asrc = *aptr;
sv = (unsigned long *)src;
asrc = *((unsigned char *)aptr);
if (!asrc) { if (!asrc) {
continue; continue;
} }
if (bpp == 1) {
dval = *((unsigned char*) dest);
sval = *((unsigned char*) src);
} else if (bpp == 2) {
dval = *((unsigned short*) dest);
sval = *((unsigned short*) src);
} else if (bpp == 3) {
unsigned char *dst = (unsigned char *) dest;
dval = 0;
dval |= ((*(dst+0)) << 0);
dval |= ((*(dst+1)) << 8);
dval |= ((*(dst+2)) << 16);
sval = 0;
sval |= ((*(src+0)) << 0);
sval |= ((*(src+1)) << 8);
sval |= ((*(src+2)) << 16);
} else if (bpp == 4) {
dval = *((unsigned int*) dest);
sval = *((unsigned int*) src);
} else {
continue;
}
/* extract dest and src RGB */ /* extract dest and src RGB */
rdst = (*dv & rmask) >> rshift; /* fb */ rdst = (dval & rmask) >> rshift; /* fb */
gdst = (*dv & gmask) >> gshift; gdst = (dval & gmask) >> gshift;
bdst = (*dv & bmask) >> bshift; bdst = (dval & bmask) >> bshift;
rsrc = (*sv & rmask) >> rshift; /* richcursor */ rsrc = (sval & rmask) >> rshift; /* richcursor */
gsrc = (*sv & gmask) >> gshift; gsrc = (sval & gmask) >> gshift;
bsrc = (*sv & bmask) >> bshift; bsrc = (sval & bmask) >> bshift;
/* blend in fb data. */ /* blend in fb data. */
if (! c->alphaPreMultiplied) { if (! c->alphaPreMultiplied) {

@ -1,3 +1,18 @@
2005-06-14 Karl Runge <runge@karlrunge.com>
* -DNOGUI and -DVIEWONLY build options
* -noskip_dups the default (windows viewer sends no ups when
repeating)
* HAVE_SOLARIS_XREADSCREEN and HAVE_IRIX_XREADDISPLAY
* Alt+Button+Motion to wireframe. tunable in WIREFRAME_PARMS
* copyrect now the default under -scale (works OK, but must
send a cleanup update)
* fix -pedantic and Sun cc warnings and errors (unsigned, etc..)
* print out fatal error messages under -quiet
* -seldir to control and debug selection transfers.
* fix crashes on 64bit wrt unsigned long in rich cursors.
* fix kde guessing errors
* more scrolling and wireframe tweaks.
2005-06-03 Karl Runge <runge@karlrunge.com> 2005-06-03 Karl Runge <runge@karlrunge.com>
* make scrollcopyrect more or less usable under -scale * make scrollcopyrect more or less usable under -scale
* add -fixscreen for periodic cleanup of painting errors. * add -fixscreen for periodic cleanup of painting errors.

File diff suppressed because it is too large Load Diff

@ -164,16 +164,18 @@ Misc
-- D -- D
=F rc: =F rc:
norc norc
nolookup
-- --
nofb nofb
-- --
=D nobell =D nobell
=D nosel =D nosel
noprimary noprimary
nolookup seldir:
-- --
xtrap xtrap
xrecord xrecord
=RA reset_record
-- --
bg bg
=-C:ignore,exit sigpipe: =-C:ignore,exit sigpipe:

@ -170,16 +170,18 @@
" -- D\n" " -- D\n"
" =F rc:\n" " =F rc:\n"
" norc\n" " norc\n"
" nolookup\n"
" --\n" " --\n"
" nofb\n" " nofb\n"
" --\n" " --\n"
" =D nobell\n" " =D nobell\n"
" =D nosel\n" " =D nosel\n"
" noprimary\n" " noprimary\n"
" nolookup\n" " seldir:\n"
" --\n" " --\n"
" xtrap\n" " xtrap\n"
" xrecord\n" " xrecord\n"
" =RA reset_record\n"
" --\n" " --\n"
" bg\n" " bg\n"
" =-C:ignore,exit sigpipe:\n" " =-C:ignore,exit sigpipe:\n"

@ -2,7 +2,7 @@
.TH X11VNC "1" "June 2005" "x11vnc " "User Commands" .TH X11VNC "1" "June 2005" "x11vnc " "User Commands"
.SH NAME .SH NAME
x11vnc - allow VNC connections to real X11 displays x11vnc - allow VNC connections to real X11 displays
version: 0.7.2, lastmod: 2005-06-03 version: 0.7.2, lastmod: 2005-06-14
.SH SYNOPSIS .SH SYNOPSIS
.B x11vnc .B x11vnc
[OPTION]... [OPTION]...
@ -186,13 +186,17 @@ the notation "m/n" may be used to denote fractions
exactly, e.g. \fB-scale\fR 2/3 exactly, e.g. \fB-scale\fR 2/3
.IP .IP
Scaling Options: can be added after \fIfraction\fR via Scaling Options: can be added after \fIfraction\fR via
":", to supply multiple ":" options use commas. If ":", to supply multiple ":" options use commas.
you just want a quick, rough scaling without blending, If you just want a quick, rough scaling without
append ":nb" to \fIfraction\fR (e.g. \fB-scale\fR 1/3:nb). blending, append ":nb" to \fIfraction\fR (e.g. \fB-scale\fR
No blending is the default for 8bpp indexed color, to 1/3:nb). No blending is the default for 8bpp indexed
force blending for this case use ":fb". By default color, to force blending for this case use ":fb".
\fB-scrollcopyrect\fR and \fB-wirecopyrect\fR are disabled under .IP
\fB-scale,\fR to enable them use ":cr". To disable \fB-scrollcopyrect\fR and \fB-wirecopyrect\fR under
\fB-scale\fR use ":nocr". If you need to to enable them use
":cr" or specify them explicitly on the command line.
If a slow link is detected, ":nocr" may be applied
automatically. Default: :cr
.IP .IP
More esoteric options: for compatibility with vncviewers More esoteric options: for compatibility with vncviewers
the scaled width is adjusted to be a multiple of 4: the scaled width is adjusted to be a multiple of 4:
@ -717,10 +721,14 @@ Example: "\fB-skip_keycodes\fR \fI94,114\fR"
\fB-skip_dups,\fR \fB-noskip_dups\fR \fB-skip_dups,\fR \fB-noskip_dups\fR
.IP .IP
Some VNC viewers send impossible repeated key events, Some VNC viewers send impossible repeated key events,
e.g. key-down, key-down, key-up, key-up all for the e.g. key-down, key-down, key-up, key-up all for the same
same key, or 20 downs in a row for the same key! key, or 20 downs in a row for the same modifier key!
Setting \fB-skip_dups\fR means to skip these duplicates and Setting \fB-skip_dups\fR means to skip these duplicates and
just process the first event. Default: \fB-skip_dups\fR just process the first event. Note: some VNC viewers
assume they can send down's without the corresponding
up's and so you should not set this option for
these viewers (symptom: some keys do not autorepeat)
Default: \fB-noskip_dups\fR
.PP .PP
\fB-add_keysyms,\fR \fB-noadd_keysyms\fR \fB-add_keysyms,\fR \fB-noadd_keysyms\fR
.IP .IP
@ -834,6 +842,15 @@ Do not poll the PRIMARY selection for changes to send
back to clients. (PRIMARY is still set on received back to clients. (PRIMARY is still set on received
changes, however). changes, however).
.PP .PP
\fB-seldir\fR \fIstring\fR
.IP
If direction string is "send", only send the selection
to viewers, and if it is "recv" only receive it from
viewers. To work around apps setting the selection
too frequently and messing up the other end. You can
actually supply a comma separated list of directions,
including "debug" to turn on debugging output.
.PP
\fB-cursor\fR \fI[mode],\fR \fB-nocursor\fR \fB-cursor\fR \fI[mode],\fR \fB-nocursor\fR
.IP .IP
Sets how the pointer cursor shape (little icon at the Sets how the pointer cursor shape (little icon at the
@ -1032,8 +1049,8 @@ Shorter aliases: \fB-wf\fR [str] and \fB-nowf\fR
The value "str" is optional and, of course, is The value "str" is optional and, of course, is
packed with many tunable parameters for this scheme: packed with many tunable parameters for this scheme:
.IP .IP
Format: shade,linewidth,percent,T+B+L+R,t1+t2+t3+t4 Format: shade,linewidth,percent,T+B+L+R,mod,t1+t2+t3+t4
Default: 0xff,3,0,32+8+8+8,0.15+0.30+5.0+0.125 Default: 0xff,3,0,32+8+8+8,all,0.15+0.30+5.0+0.125
.IP .IP
If you leave nothing between commas: ",," the default If you leave nothing between commas: ",," the default
value is used. If you don't specify enough commas, value is used. If you don't specify enough commas,
@ -1055,6 +1072,14 @@ This is a speedup to quickly exclude a window from being
wireframed: set them all to zero to not try the speedup wireframed: set them all to zero to not try the speedup
(scrolling and selecting text will likely be slower). (scrolling and selecting text will likely be slower).
.IP .IP
"mod" specifies if a button down event in the
interior of the window with a modifier key (Alt, Shift,
etc.) down should indicate a wireframe opportunity.
It can be "0" or "none" to skip it, "1" or "all"
to apply it to any modifier, or "Shift", "Alt",
"Control", "Meta", "Super", or "Hyper" to only
apply for that type of modifier key.
.IP
"t1+t2+t3+t4" specify four floating point times in "t1+t2+t3+t4" specify four floating point times in
seconds: t1 is how long to wait for the pointer to move, seconds: t1 is how long to wait for the pointer to move,
t2 is how long to wait for the window to start moving t2 is how long to wait for the window to start moving
@ -1082,10 +1107,11 @@ the window was not covered by any other windows, and
region (this may look odd as the remaining pieces come region (this may look odd as the remaining pieces come
in, but helps on a slow link). Default: "always" in, but helps on a slow link). Default: "always"
.IP .IP
Note: there can be painting errors when using \fB-scale\fR Note: there can be painting errors or slow response
so CopyRect is skipped when scaling unless you specify when using \fB-scale\fR so you may want to disable CopyRect
"\fB-wirecopyrect\fR \fIalways\fR" on the command line or by in this case "\fB-wirecopyrect\fR \fInever\fR" on the command
remote-control. Or you can also use "\fB-scale\fR \fIxxx:cr\fR" line or by remote-control. Or you can also use the
"\fB-scale\fR \fIxxx:nocr\fR" scale option.
.PP .PP
\fB-debug_wireframe\fR \fB-debug_wireframe\fR
.IP .IP
@ -1131,16 +1157,24 @@ may be seen when using this mode:
4 Super_L's in a row: reset RECORD context, 4 Super_L's in a row: reset RECORD context,
5 Super_L's in a row: try to push a black screen 5 Super_L's in a row: try to push a black screen
.IP .IP
note: Alt_L is the Left "Alt" key (a single key)
Super_L is the Left "Super" key (Windows flag).
Both of these are modifier keys, and so should not
generate characters when pressed by themselves. Also,
your VNC viewer may have its own refresh hot-key
or button.
.IP
"mode" can be "never" (same as \fB-noscrollcopyrect)\fR "mode" can be "never" (same as \fB-noscrollcopyrect)\fR
to never try the copyrect, "keys" means to try it to never try the copyrect, "keys" means to try it
in response to keystrokes only, "mouse" means to in response to keystrokes only, "mouse" means to
try it in response to mouse events only, "always" try it in response to mouse events only, "always"
means to do both. Default: "always" means to do both. Default: "always"
.IP .IP
Note: there can be painting errors when using \fB-scale\fR Note: there can be painting errors or slow response
so CopyRect is skipped when scaling unless you specify when using \fB-scale\fR so you may want to disable CopyRect
"\fB-scrollcopyrect\fR \fIalways\fR" on the command line or by in this case "\fB-scrollcopyrect\fR \fInever\fR" on the command
remote-control. You can also use "\fB-scale\fR \fIxxx:cr\fR" line or by remote-control. Or you can also use the
"\fB-scale\fR \fIxxx:nocr\fR" scale option.
.PP .PP
\fB-scr_area\fR \fIn\fR \fB-scr_area\fR \fIn\fR
.IP .IP
@ -1303,22 +1337,22 @@ it is intended for cases when the \fB-scrollcopyrect\fR or
but it can be used for any scenario. This option but it can be used for any scenario. This option
periodically performs costly operations and so periodically performs costly operations and so
interactive response may be reduced when it is on. interactive response may be reduced when it is on.
The 3 Alt_L's in a row described under \fB-scrollcopyrect\fR The 3 Alt_L's (the Left "Alt" key) taps in a row
can be used instead to manually request a screen repaint described under \fB-scrollcopyrect\fR can be used instead to
when it is needed. manually request a screen repaint when it is needed.
.IP .IP
\fIstring\fR is a comma separated list of one or more \fIstring\fR is a comma separated list of one or more of
of the following: "V=t", "C=t", and "X=t". the following: "V=t", "C=t", and "X=t". In these
In these "t" stands for a time in seconds (it is "t" stands for a time in seconds (it is a floating
a floating point even though one should usually use point even though one should usually use values > 2 to
values > 2 to avoid wasting resources). V sets how avoid wasting resources). V sets how frequently the
frequently the entire screen should be sent to viewers entire screen should be sent to viewers (it is like the
(it is like the 3 Alt_L's). C sets how long after a 3 Alt_L's). C sets how long to wait after a CopyRect
CopyRect the full screen should be repainted. X sets to repaint the full screen. X sets how frequently
how frequently to reread the full X11 framebuffer from to reread the full X11 framebuffer from the X server
the X server and push it out to connected viewers. and push it out to connected viewers. Use of X should
Use of X should be rare. Examples: \fB-fixscreen\fR V=10 be rare, please report a bug if you find you need it.
\fB-fixscreen\fR C=10 Examples: \fB-fixscreen\fR V=10 \fB-fixscreen\fR C=10
.PP .PP
\fB-debug_scroll\fR \fB-debug_scroll\fR
.IP .IP
@ -1945,6 +1979,8 @@ noprimary enable \fB-noprimary\fR mode.
.IP .IP
primary disable \fB-noprimary\fR mode. primary disable \fB-noprimary\fR mode.
.IP .IP
seldir:str set \fB-seldir\fR to "str"
.IP
cursor:mode enable \fB-cursor\fR "mode". cursor:mode enable \fB-cursor\fR "mode".
.IP .IP
show_cursor enable showing a cursor. show_cursor enable showing a cursor.
@ -2022,6 +2058,8 @@ noxrecord disable all use of RECORD extension.
.IP .IP
xrecord enable use of RECORD extension. xrecord enable use of RECORD extension.
.IP .IP
reset_record reset RECORD extension (if avail.).
.IP
pointer_mode:n set \fB-pointer_mode\fR to n. same as "pm" pointer_mode:n set \fB-pointer_mode\fR to n. same as "pm"
.IP .IP
input_skip:n set \fB-input_skip\fR to n. input_skip:n set \fB-input_skip\fR to n.
@ -2180,14 +2218,6 @@ in these cases the value returned is "N/A". To direct
a query straight to the VNC_CONNECT property or connect a query straight to the VNC_CONNECT property or connect
file use "qry=..." instead of "cmd=..." file use "qry=..." instead of "cmd=..."
.IP .IP
Here is the current list of "variables" that can
be supplied to the \fB-query\fR command. This includes the
"N/A" ones that return no useful info. For variables
names that do not correspond to an x11vnc option or
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 ans= stop quit exit shutdown ping blacken zero
refresh reset close disconnect id sid waitmapped refresh reset close disconnect id sid waitmapped
nowaitmapped clip flashcmap noflashcmap shiftcmap nowaitmapped clip flashcmap noflashcmap shiftcmap
@ -2204,23 +2234,23 @@ xrandr noxrandr xrandr_mode padgeom quiet q noquiet
modtweak nomodtweak xkb noxkb skip_keycodes skip_dups modtweak nomodtweak xkb noxkb skip_keycodes skip_dups
noskip_dups add_keysyms noadd_keysyms clear_mods noskip_dups add_keysyms noadd_keysyms clear_mods
noclear_mods clear_keys noclear_keys remap repeat noclear_mods clear_keys noclear_keys remap repeat
norepeat fb nofb bell nobell sel nosel primary noprimary norepeat fb nofb bell nobell sel nosel primary
cursorshape nocursorshape cursorpos nocursorpos cursor noprimary seldir cursorshape nocursorshape cursorpos
show_cursor noshow_cursor nocursor arrow xfixes nocursorpos cursor show_cursor noshow_cursor nocursor
noxfixes xdamage noxdamage xd_area xd_mem alphacut arrow xfixes noxfixes xdamage noxdamage xd_area xd_mem
alphafrac alpharemove noalpharemove alphablend alphacut alphafrac alpharemove noalpharemove alphablend
noalphablend xwarppointer xwarp noxwarppointer noalphablend xwarppointer xwarp noxwarppointer noxwarp
noxwarp buttonmap dragging nodragging wireframe_mode buttonmap dragging nodragging wireframe_mode wireframe
wireframe wf nowireframe nowf wirecopyrect wcr wf nowireframe nowf wirecopyrect wcr nowirecopyrect
nowirecopyrect nowcr scr_area scr_skip scr_inc scr_keys nowcr scr_area scr_skip scr_inc scr_keys scr_term
scr_term scr_keyrepeat scr_parms scrollcopyrect scr scr_keyrepeat scr_parms scrollcopyrect scr
noscrollcopyrect noscr fixscreen noxrecord xrecord noscrollcopyrect noscr fixscreen noxrecord xrecord
pointer_mode pm input_skip input client_input speeds reset_record pointer_mode pm input_skip input
debug_pointer dp nodebug_pointer nodp debug_keyboard client_input speeds debug_pointer dp nodebug_pointer
dk nodebug_keyboard nodk deferupdate defer wait_ui nodp debug_keyboard dk nodebug_keyboard nodk deferupdate
wait_bog nowait_bog wait readtimeout nap nonap sb defer wait_ui wait_bog nowait_bog wait readtimeout
screen_blank fs gaps grow fuzz snapfb nosnapfb nap nonap sb screen_blank fs gaps grow fuzz snapfb
rawfb progressive rfbport http nohttp httpport nosnapfb rawfb progressive rfbport http nohttp httpport
httpdir enablehttpproxy noenablehttpproxy alwaysshared httpdir enablehttpproxy noenablehttpproxy alwaysshared
noalwaysshared nevershared noalwaysshared dontdisconnect noalwaysshared nevershared noalwaysshared dontdisconnect
nodontdisconnect desktop debug_xevents nodebug_xevents nodontdisconnect desktop debug_xevents nodebug_xevents
@ -2230,19 +2260,19 @@ debug_wireframe debug_scroll nodebug_scroll debug_scroll
debug_tiles dbt nodebug_tiles nodbt debug_tiles dbg debug_tiles dbt nodebug_tiles nodbt debug_tiles dbg
nodbg noremote nodbg noremote
.IP .IP
aro= display vncdisplay desktopname http_url auth aro= display vncdisplay desktopname guess_desktop
users rootshift clipshift scale_str scaled_x scaled_y http_url auth users rootshift clipshift scale_str
scale_numer scale_denom scale_fac scaling_blend scaled_x scaled_y scale_numer scale_denom
scaling_nomult4 scaling_pad scaling_interpolate inetd scale_fac scaling_blend scaling_nomult4 scaling_pad
privremote unsafe safer nocmds passwdfile using_shm scaling_interpolate inetd privremote unsafe safer nocmds
logfile o flag rc norc h help V version lastmod bg passwdfile using_shm logfile o flag rc norc h help V
sigpipe threads readrate netrate netlatency pipeinput version lastmod bg sigpipe threads readrate netrate
clients client_count pid ext_xtest ext_xtrap ext_xrecord netlatency pipeinput clients client_count pid ext_xtest
ext_xkb ext_xshm ext_xinerama ext_overlay ext_xfixes ext_xtrap ext_xrecord ext_xkb ext_xshm ext_xinerama
ext_xdamage ext_xrandr rootwin num_buttons button_mask ext_overlay ext_xfixes ext_xdamage ext_xrandr rootwin
mouse_x mouse_y bpp depth indexed_color dpy_x dpy_y num_buttons button_mask mouse_x mouse_y bpp depth
wdpy_x wdpy_y off_x off_y cdpy_x cdpy_y coff_x coff_y indexed_color dpy_x dpy_y wdpy_x wdpy_y off_x off_y
rfbauth passwd cdpy_x cdpy_y coff_x coff_y rfbauth passwd
.PP .PP
\fB-sync\fR \fB-sync\fR
.IP .IP

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save