diff options
author | runge <runge> | 2006-02-25 05:10:37 +0000 |
---|---|---|
committer | runge <runge> | 2006-02-25 05:10:37 +0000 |
commit | 79310af7e7a289d2baf1bdc295daefdcc76ecc0e (patch) | |
tree | da68674a1beef5ce0ba807187657ca5fe215f68c /x11vnc/options.c | |
parent | b7773ea6e683e5fcfae5bf020828596c5f90b7d3 (diff) | |
download | libtdevnc-79310af7e7a289d2baf1bdc295daefdcc76ecc0e.tar.gz libtdevnc-79310af7e7a289d2baf1bdc295daefdcc76ecc0e.zip |
x11vnc: -unixpw and -stunnel. Add clipboard to input control.
Diffstat (limited to 'x11vnc/options.c')
-rw-r--r-- | x11vnc/options.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/x11vnc/options.c b/x11vnc/options.c index dc3901e..01c1577 100644 --- a/x11vnc/options.c +++ b/x11vnc/options.c @@ -15,6 +15,11 @@ char *logfile = NULL; /* -o, -logfile */ int logfile_append = 0; char *flagfile = NULL; /* -flag */ char *passwdfile = NULL; /* -passwdfile */ +int unixpw = 0; /* -unixpw */ +char *unixpw_list = NULL; +int use_stunnel = 0; /* -stunnel */ +int stunnel_port = 0; +char *stunnel_pem = NULL; char *blackout_str = NULL; /* -blackout */ int blackout_ptr = 0; char *clip_str = NULL; /* -clip */ |