Software /
code /
prosody
Diff
net/http/server.lua @ 7542:0f92dc8e8b88
Merge 0.10->trunk
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 08 Aug 2016 16:41:09 +0200 |
parent | 7541:1d3f9da189b5 |
child | 7581:01d0d466d7be |
line wrap: on
line diff
--- a/net/http/server.lua Sat Aug 06 11:58:01 2016 +0200 +++ b/net/http/server.lua Mon Aug 08 16:41:09 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 = {};