diff options
author | Christian Pointner <equinox@helsinki.at> | 2016-06-24 04:33:56 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2016-06-24 04:33:56 (GMT) |
commit | 3f38e00703caf05a1867070873c8715438b41264 (patch) | |
tree | 78eded87c035fc3f89079713f367e9bf6ce095b3 /web-static | |
parent | 03908fc8040ad92055ef1aeebedf39c6bc9b2047 (diff) |
set chunk size for websocket file uploads to 40k...
Diffstat (limited to 'web-static')
-rw-r--r-- | web-static/socket.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web-static/socket.html b/web-static/socket.html index 3737c5f..af73763 100644 --- a/web-static/socket.html +++ b/web-static/socket.html @@ -105,7 +105,7 @@ } function sendbinmsg() { - var byteArray = new Uint8Array(100); + var byteArray = new Uint8Array(40*1024); for (var x = 0; x < byteArray.length; x++){ byteArray[x] = x } |