diff options
author | runge <runge> | 2006-03-12 05:50:01 +0000 |
---|---|---|
committer | runge <runge> | 2006-03-12 05:50:01 +0000 |
commit | e2e9347946bbaf1bf87c571d4a1fd9115fe90954 (patch) | |
tree | e58c0b2d9dcddf0a8d2f90930119945020cb1f5c /x11vnc/options.c | |
parent | 5e72609631a1893acfe6a31d0129553ed3044a20 (diff) | |
download | libtdevnc-e2e9347946bbaf1bf87c571d4a1fd9115fe90954.tar.gz libtdevnc-e2e9347946bbaf1bf87c571d4a1fd9115fe90954.zip |
x11vnc: add -ssl mode using libssl. Include Xdummy in misc.
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 0726526..f87e62a 100644 --- a/x11vnc/options.c +++ b/x11vnc/options.c @@ -21,6 +21,11 @@ char *unixpw_list = NULL; int use_stunnel = 0; /* -stunnel */ int stunnel_port = 0; char *stunnel_pem = NULL; +int use_openssl = 0; +char *openssl_pem = NULL; +char *ssl_verify = NULL; +int ssl_initialized = 0; +int usepw = USEPW; char *blackout_str = NULL; /* -blackout */ int blackout_ptr = 0; char *clip_str = NULL; /* -clip */ |