diff options
author | runge <runge@karlrunge.com> | 2009-12-02 22:09:51 -0500 |
---|---|---|
committer | runge <runge@karlrunge.com> | 2009-12-02 22:09:51 -0500 |
commit | 00a9a0ea4d0f642b34b4423ea867099b52edf078 (patch) | |
tree | c9df2a624681358103c80e79847fd415cf3a8e2f /x11vnc/options.c | |
parent | f40b0111827677625d81b7b7fcd001ce285adf69 (diff) | |
download | libtdevnc-00a9a0ea4d0f642b34b4423ea867099b52edf078.tar.gz libtdevnc-00a9a0ea4d0f642b34b4423ea867099b52edf078.zip |
x11vnc: -appshare mode for sharing an application windows instead of the
entire desktop. map port + 5500 in reverse connect. Add id_cmd remote
control functions for id (and other) windows. Allow zero port in SSL
reverse connections. Adjust delays between multiple reverse connections;
X11VNC_REVERSE_SLEEP_MAX env var. Add some missing mutex locks; add
INPUT_LOCK and threads_drop_input. More safety in -threads mode for
new framebuffer change. Fix some stderr leaking in -inetd mode.
Diffstat (limited to 'x11vnc/options.c')
-rw-r--r-- | x11vnc/options.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/x11vnc/options.c b/x11vnc/options.c index 2003225..5ec1a19 100644 --- a/x11vnc/options.c +++ b/x11vnc/options.c @@ -206,6 +206,8 @@ int macosx_icon_anim_time = 450; unsigned long subwin = 0x0; /* -id, -sid */ int subwin_wait_mapped = 0; +int freeze_when_obscured = 0; +int subwin_obscured = 0; int debug_xevents = 0; /* -R debug_xevents:1 */ int debug_xdamage = 0; /* -R debug_xdamage:1 or 2 ... */ @@ -472,6 +474,7 @@ int verbose = 0; /* threaded vs. non-threaded (default) */ int use_threads = 0; int started_rfbRunEventLoop = 0; +int threads_drop_input = 0; /* info about command line opts */ int got_noxwarppointer = 0; |