diff options
Diffstat (limited to 'x11vnc/options.c')
-rw-r--r-- | x11vnc/options.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/x11vnc/options.c b/x11vnc/options.c index ec51880..a4ddee5 100644 --- a/x11vnc/options.c +++ b/x11vnc/options.c @@ -23,6 +23,7 @@ int stunnel_port = 0; char *stunnel_pem = NULL; int use_openssl = 0; char *openssl_pem = NULL; +char *ssl_certs_dir = NULL; int https_port_num = -1; char *ssl_verify = NULL; int ssl_initialized = 0; @@ -279,6 +280,13 @@ int napfac = 4; /* time = napfac*waitms, cut load with extra waits */ int napmax = 1500; /* longest nap in ms. */ int ui_skip = 10; /* see watchloop. negative means ignore input */ + +#if LIBVNCSERVER_HAVE_FBPM +int watch_fbpm = 1; /* -nofbpm */ +#else +int watch_fbpm = 0; +#endif + int watch_selection = 1; /* normal selection/cutbuffer maintenance */ int watch_primary = 1; /* more dicey, poll for changes in PRIMARY */ int watch_clipboard = 1; |