diff options
author | runge <runge> | 2006-09-17 18:08:23 +0000 |
---|---|---|
committer | runge <runge> | 2006-09-17 18:08:23 +0000 |
commit | dba5e098767b71bb017fa191cc3f07dc68437655 (patch) | |
tree | 2cc3de51656fb733b93baaa0b7a02a058801cd3c /x11vnc/options.c | |
parent | 31d3a9fa8d081c573822fd8b66b9cdf70092c9d2 (diff) | |
download | libtdevnc-dba5e098767b71bb017fa191cc3f07dc68437655.tar.gz libtdevnc-dba5e098767b71bb017fa191cc3f07dc68437655.zip |
x11vnc: -verbose, -connect_or_exit, -rfbport 0, print out SSL cert.
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 9494f40..93d215b 100644 --- a/x11vnc/options.c +++ b/x11vnc/options.c @@ -150,6 +150,7 @@ int noxrecord = 0; char *client_connect = NULL; /* strings for -connect option */ char *client_connect_file = NULL; +int connect_or_exit = 0; int vnc_connect = 1; /* -vncconnect option */ int show_cursor = 1; /* show cursor shapes */ @@ -326,6 +327,7 @@ int debug_pointer = 0; int debug_keyboard = 0; int quiet = 0; +int verbose = 0; /* threaded vs. non-threaded (default) */ #if LIBVNCSERVER_HAVE_LIBPTHREAD && defined(X11VNC_THREADED) @@ -336,6 +338,7 @@ int use_threads = 0; /* info about command line opts */ int got_rfbport = 0; +int got_rfbport_val = -1; int got_alwaysshared = 0; int got_nevershared = 0; int got_cursorpos = 0; |