This commit is contained in:
parent
6a346bf940
commit
8912212d8e
@ -994,7 +994,7 @@ void tf_http_request_websocket_send(tf_http_request_t* request, int op_code, con
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
uint32_t high = (size >> 32) & 0xffffffff;
|
uint32_t high = ((uint64_t)size >> 32) & 0xffffffff;
|
||||||
uint32_t low = (size >> 0) & 0xffffffff;
|
uint32_t low = (size >> 0) & 0xffffffff;
|
||||||
copy[1] = 127;
|
copy[1] = 127;
|
||||||
copy[2] = (high >> 24) & 0xff;
|
copy[2] = (high >> 24) & 0xff;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user