summaryrefslogtreecommitdiffstats
path: root/x11vnc/x11vnc.h
diff options
context:
space:
mode:
authorrunge <runge>2006-03-12 05:50:01 +0000
committerrunge <runge>2006-03-12 05:50:01 +0000
commite2e9347946bbaf1bf87c571d4a1fd9115fe90954 (patch)
treee58c0b2d9dcddf0a8d2f90930119945020cb1f5c /x11vnc/x11vnc.h
parent5e72609631a1893acfe6a31d0129553ed3044a20 (diff)
downloadlibvncserver-e2e9347946bbaf1bf87c571d4a1fd9115fe90954.zip
libvncserver-e2e9347946bbaf1bf87c571d4a1fd9115fe90954.tar.gz
x11vnc: add -ssl mode using libssl. Include Xdummy in misc.
Diffstat (limited to 'x11vnc/x11vnc.h')
-rw-r--r--x11vnc/x11vnc.h26
1 files changed, 23 insertions, 3 deletions
diff --git a/x11vnc/x11vnc.h b/x11vnc/x11vnc.h
index 10355b6..3a969b8 100644
--- a/x11vnc/x11vnc.h
+++ b/x11vnc/x11vnc.h
@@ -56,6 +56,7 @@
* -DHARDWIRE_PASSWD=... hardwired passwords, quoting necessary.
* -DHARDWIRE_VIEWPASSWD=...
* -DNOPW=1 make -nopw the default (skip warning)
+ * -DUSEPW=1 make -usepw the default
* -DPASSWD_REQUIRED=1 exit unless a password is supplied.
* -DPASSWD_UNLESS_NOPW=1 exit unless a password is supplied and no -nopw.
*
@@ -73,6 +74,9 @@
* -DSMALL_FOOTPRINT=1 for smaller binary size (no help, no gui, etc)
* use 2 or 3 for even smaller footprint.
* -DNOGUI do not include the gui tkx11vnc.
+ * -DSKIP_HELP=1 smaller.
+ * -DSKIP_XKB=1 a little smaller.
+ * -DSKIP_8to24=1 a little smaller.
* -DPOLL_8TO24_DELAY=N
* -DDEBUG_XEVENTS=1 enable printout for X events.
*
@@ -93,6 +97,10 @@
#define NOPW 0
#endif
+#ifndef USEPW
+#define USEPW 0
+#endif
+
#ifndef PASSWD_REQUIRED
#define PASSWD_REQUIRED 0
#endif
@@ -116,13 +124,23 @@
#define SMALL_FOOTPRINT 0
#endif
+#ifndef SKIP_XKB
+#define SKIP_XKB 0
+#endif
+#ifndef SKIP_8TO24
+#define SKIP_8TO24 0
+#endif
+#ifndef SKIP_HELP
+#define SKIP_HELP 0
+#endif
+
#if SMALL_FOOTPRINT
+#undef NOGUI
#define NOGUI
+#undef SKIP_HELP
+#define SKIP_HELP 0
#endif
-#define SKIP_XKB 0
-#define SKIP_8TO24 0
-
#if (SMALL_FOOTPRINT > 1)
#undef SKIP_XKB
#undef SKIP_8TO24
@@ -447,6 +465,8 @@ typedef struct _ClientData {
int login_viewonly;
time_t login_time;
+ pid_t ssh_helper_pid;
+
int had_cursor_shape_updates;
int had_cursor_pos_updates;
OpenPOWER on IntegriCloud