From c1fcfd652ecf77b4abf07861e319d07c1862560f Mon Sep 17 00:00:00 2001 From: XeonSquared Date: Sat, 6 Jun 2020 14:42:58 +1000 Subject: [PATCH] fserv now sends the correct status messages for HTTP(S) proxying --- service/fserv.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/service/fserv.lua b/service/fserv.lua index 1944679..fdb9323 100644 --- a/service/fserv.lua +++ b/service/fserv.lua @@ -63,6 +63,7 @@ local function httpHandler(socket,rtype,path) if code < 200 or code > 299 then socket:write(string.format("f%d\n%s",code,message)) else + socket:write("y") local data = "" repeat coroutine.yield()