cwebsocket icon indicating copy to clipboard operation
cwebsocket copied to clipboard

cWebsocket is lightweight websocket server library

Results 4 cwebsocket issues
Sort by recently updated
recently updated
newest added

*buf++ = (((n - 1 - i) >> 31) & '=') | *buf++ = (((n - 1 - i) >> 24) & '=') | aw-base64.h

(((n - 1 - i) >> 31) & '=') | ... -----> (((n - 1 - i) >> 23) & '=') | ... 32bit core -1 >> 31 0x00000001 64bit...

Hi. this is great websocket project for ESP32 because there is no source for it. Unfortunately I couldn't import to PlatformIo using ESP32.

ssize_t readed = recv(clientSocket, gBuffer+readedLength, BUF_LEN-readedLength, 0); I compile this lib use mipsel-openwrt-linux-gcc. run on router. maybe void wsGetHandshakeAnswer(const struct handshake *hs, uint8_t *outFrame, *outLength) have a bad responseKey on...