1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-28 05:15:54 +00:00

Memory: Reduce send buffer length, entirely too large

This commit is contained in:
Kane York 2016-01-17 17:28:33 -08:00
parent b3cbec4560
commit c85e8b10c3

View file

@ -277,8 +277,8 @@ var CloseNonUTF8Data = websocket.CloseError{
Text: "Non UTF8 data recieved. Network corruption likely.", Text: "Non UTF8 data recieved. Network corruption likely.",
} }
const sendMessageBufferLength = 125 const sendMessageBufferLength = 30
const sendMessageAbortLength = 50 const sendMessageAbortLength = 20
// RunSocketConnection contains the main run loop of a websocket connection. // RunSocketConnection contains the main run loop of a websocket connection.
// //