diff options
author | Christian Beier <dontmind@freeshell.org> | 2017-05-14 20:49:57 +0200 |
---|---|---|
committer | Christian Beier <dontmind@freeshell.org> | 2017-05-14 20:49:57 +0200 |
commit | f48921becf48355e215d663cebbbbaa720b28a95 (patch) | |
tree | 5eced657406f0789f6ef84b175627e067ab65017 /libvncserver/websockets.c | |
parent | ef8d2852f546135c94282a4d634fe4ac9e7558a4 (diff) | |
download | libtdevnc-f48921becf48355e215d663cebbbbaa720b28a95.tar.gz libtdevnc-f48921becf48355e215d663cebbbbaa720b28a95.zip |
websockets: restore webSocketCheckDisconnect() to keep API compatibility
Diffstat (limited to 'libvncserver/websockets.c')
-rw-r--r-- | libvncserver/websockets.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libvncserver/websockets.c b/libvncserver/websockets.c index 921015d..d10d992 100644 --- a/libvncserver/websockets.c +++ b/libvncserver/websockets.c @@ -440,6 +440,17 @@ webSocketsDecode(rfbClientPtr cl, char *dst, int len) return webSocketsDecodeHybi(wsctx, dst, len); } +/** + * This is a stub function that was once used for Hixie-encoding. + * We keep it for API compatibility. + */ +rfbBool +webSocketCheckDisconnect(rfbClientPtr cl) +{ + return FALSE; +} + + /* returns TRUE if there is data waiting to be read in our internal buffer * or if is there any pending data in the buffer of the SSL implementation */ |