net/http/server.lua
changeset 7544 1d3f9da189b5
parent 7492 d32406f27efd
child 7584 01d0d466d7be
--- a/net/http/server.lua	Sun Aug 07 20:51:34 2016 +0200
+++ b/net/http/server.lua	Mon Aug 08 16:07:46 2016 +0200
@@ -13,7 +13,7 @@
 local tostring = tostring;
 local cache = require "util.cache";
 local codes = require "net.http.codes";
-local blocksize = require "socket".BLOCKSIZE or 2048;
+local blocksize = 2^16;
 
 local _M = {};