diff options
author | runge <runge@karlrunge.com> | 2009-10-08 17:30:36 -0400 |
---|---|---|
committer | runge <runge@karlrunge.com> | 2009-10-08 17:30:36 -0400 |
commit | 3129ef668abf2b3f9b624bdb4c5ac0365ae2583b (patch) | |
tree | a2f7edda96dd11da79f7fbbab886625caaa41ae8 /x11vnc/options.c | |
parent | 169ef3a0429b3e21720856024076e1941221e987 (diff) | |
download | libtdevnc-3129ef668abf2b3f9b624bdb4c5ac0365ae2583b.tar.gz libtdevnc-3129ef668abf2b3f9b624bdb4c5ac0365ae2583b.zip |
Huge number of changes, see x11vnc/ChangeLog
Diffstat (limited to 'x11vnc/options.c')
-rw-r--r-- | x11vnc/options.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/x11vnc/options.c b/x11vnc/options.c index e25e530..2003225 100644 --- a/x11vnc/options.c +++ b/x11vnc/options.c @@ -55,6 +55,8 @@ int unixpw = 0; /* -unixpw */ int unixpw_nis = 0; /* -unixpw_nis */ char *unixpw_list = NULL; char *unixpw_cmd = NULL; +int unixpw_system_greeter = 0; +int unixpw_system_greeter_active = 0; int use_stunnel = 0; /* -stunnel */ int stunnel_port = 0; char *stunnel_pem = NULL; @@ -70,6 +72,8 @@ int vencrypt_enable_plain_login = 0; int anontls_mode = ANONTLS_SUPPORT; int create_fresh_dhparams = 0; char *dhparams_file = NULL; +int http_try_it = 0; +int stunnel_http_port = 0; int https_port_num = -1; int https_port_redir = 0; char *ssl_verify = NULL; @@ -112,6 +116,8 @@ int deny_all = 0; /* global locking of new clients */ #define REMOTE_DEFAULT 1 #endif int accept_remote_cmds = REMOTE_DEFAULT; /* -noremote */ +char *remote_prefix = NULL; +int remote_direct = 0; int query_default = 0; int safe_remote_only = 1; /* -unsafe */ int priv_remote = 0; /* -privremote */ @@ -402,6 +408,7 @@ double wait_ui = 2.0; double slow_fb = 0.0; double xrefresh = 0.0; int wait_bog = 1; +int extra_fbur = 1; int defer_update = 20; /* deferUpdateTime ms to wait before sends. */ int set_defer = 1; int got_defer = 0; |