diff options
author | Christian Beier <dontmind@freeshell.org> | 2010-11-02 22:23:12 +0100 |
---|---|---|
committer | Christian Beier <dontmind@freeshell.org> | 2010-11-02 22:23:12 +0100 |
commit | e5523350a8fb5d6ccae4b4d9bc92897f3e5db18c (patch) | |
tree | a784f30fb06c79ec942613f7a3833a23f97e808c /libvncserver/main.c | |
parent | 5da7c7a71ac1db69902c3a2a80f8771713dde70f (diff) | |
download | libtdevnc-e5523350a8fb5d6ccae4b4d9bc92897f3e5db18c.tar.gz libtdevnc-e5523350a8fb5d6ccae4b4d9bc92897f3e5db18c.zip |
libvnc[server|client]: implement xvp VNC extension.
This implements the xvp VNC extension, which is described in the
community version of the RFB protocol:
http://tigervnc.sourceforge.net/cgi-bin/rfbproto
It is also mentioned in the official RFB protocol.
Diffstat (limited to 'libvncserver/main.c')
-rw-r--r-- | libvncserver/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libvncserver/main.c b/libvncserver/main.c index 28bbc42..5332e2d 100644 --- a/libvncserver/main.c +++ b/libvncserver/main.c @@ -901,6 +901,7 @@ rfbScreenInfoPtr rfbGetScreen(int* argc,char** argv, screen->displayHook = NULL; screen->displayFinishedHook = NULL; screen->getKeyboardLedStateHook = NULL; + screen->xvpHook = NULL; /* initialize client list and iterator mutex */ rfbClientListInit(screen); |