diff options
author | runge <runge> | 2006-03-28 05:43:04 +0000 |
---|---|---|
committer | runge <runge> | 2006-03-28 05:43:04 +0000 |
commit | 5920dc18d75a53690ed8690867f501c51595daf1 (patch) | |
tree | 4f2eb03ac80b27ba03dedaa1a4b32640703b3d02 /x11vnc/sslhelper.h | |
parent | 10c61b53c275f125432fa20d8348aafcfed2bf93 (diff) | |
download | libvncserver-5920dc18d75a53690ed8690867f501c51595daf1.zip libvncserver-5920dc18d75a53690ed8690867f501c51595daf1.tar.gz |
SSL patch for Java viewer. https support for x11vnc.
Diffstat (limited to 'x11vnc/sslhelper.h')
-rw-r--r-- | x11vnc/sslhelper.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/x11vnc/sslhelper.h b/x11vnc/sslhelper.h index 1ff1e70..f8561ad 100644 --- a/x11vnc/sslhelper.h +++ b/x11vnc/sslhelper.h @@ -4,14 +4,23 @@ /* -- sslhelper.h -- */ +#define OPENSSL_INETD 1 +#define OPENSSL_VNC 2 +#define OPENSSL_HTTPS 3 + extern int openssl_sock; +extern int openssl_port_num; +extern int https_sock; extern pid_t openssl_last_helper_pid; extern int openssl_present(void); extern void openssl_init(void); extern void openssl_port(void); +extern void https_port(void); extern void check_openssl(void); -extern void ssh_helper_pid(pid_t pid, int sock); +extern void check_https(void); +extern void ssl_helper_pid(pid_t pid, int sock); +extern void accept_openssl(int mode); #endif /* _X11VNC_SSLHELPER_H */ |