From d684be0cff116df0a3287b8883440b36460e0579 Mon Sep 17 00:00:00 2001 From: Diego Nehab Date: Thu, 7 Jun 2001 20:52:34 +0000 Subject: [PATCH] Block size increased. --- src/http.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http.lua b/src/http.lua index 38d54d0..576118e 100644 --- a/src/http.lua +++ b/src/http.lua @@ -16,7 +16,7 @@ local PORT = 80 -- user agent field sent in request local USERAGENT = "LuaSocket 1.3b HTTP 1.1" -- block size used in transfers -local BLOCKSIZE = 4096 +local BLOCKSIZE = 8192 ----------------------------------------------------------------------------- -- Tries to get a pattern from the server and closes socket on error