websockets: restore webSocketCheckDisconnect() to keep API compatibility

pull/3/head
Christian Beier 7 years ago
parent ef8d2852f5
commit f48921becf
No known key found for this signature in database
GPG Key ID: 421BB3B45C6067F8

@ -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
*/

@ -763,6 +763,7 @@ extern rfbBool rfbSetNonBlocking(int sock);
/* websockets.c */
extern rfbBool webSocketsCheck(rfbClientPtr cl);
extern rfbBool webSocketCheckDisconnect(rfbClientPtr cl);
extern int webSocketsEncode(rfbClientPtr cl, const char *src, int len, char **dst);
extern int webSocketsDecode(rfbClientPtr cl, char *dst, int len);
extern rfbBool webSocketsHasDataInBuffer(rfbClientPtr cl);

Loading…
Cancel
Save