Recover work after repo corruption, experimental icons for channels, merge http.c keepalive changes from PR

This commit is contained in:
winsped
2026-07-12 02:10:25 +03:00
parent 4059bf5363
commit f4b28f68bc
13 changed files with 55 additions and 16 deletions
+1 -1
View File
@@ -201,7 +201,7 @@ int ReadWebSocket(SSL *ssl, char **out_buffer, size_t *out_length) {
unsigned char tlen = (plHeaders << 1) >> 1;
if (tlen == 127) {
SSL_read(ssl, &curPayloadLen, 8);
curPayloadLen = ntohll(curPayloadLen);
curPayloadLen = ntohl(curPayloadLen);
payloadLen += curPayloadLen;
} else if (tlen == 126) {
unsigned short templen;