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/x11vnc.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/x11vnc.h')
-rw-r--r-- | x11vnc/x11vnc.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/x11vnc/x11vnc.h b/x11vnc/x11vnc.h index 3a969b8..09370fe 100644 --- a/x11vnc/x11vnc.h +++ b/x11vnc/x11vnc.h @@ -46,6 +46,7 @@ * -DVNCSHARED to have the vnc display shared by default. * -DFOREVER to have -forever on by default. * -DNOREPEAT=0 to have -repeat on by default. + * -DXINERAMA=0 to have -noxinerama on by default. * -DADDKEYSYMS=0 to have -noadd_keysyms the default. * * -DREMOTE_DEFAULT=0 to disable remote-control on by default (-yesremote). @@ -93,6 +94,10 @@ #define REMOTE_CONTROL 1 #endif +#ifndef XINERAMA +#define XINERAMA 1 +#endif + #ifndef NOPW #define NOPW 0 #endif @@ -465,7 +470,7 @@ typedef struct _ClientData { int login_viewonly; time_t login_time; - pid_t ssh_helper_pid; + pid_t ssl_helper_pid; int had_cursor_shape_updates; int had_cursor_pos_updates; |