1
1
kopia lustrzana https://git.shadowkat.net/izaya/OC-PsychOS2.git synced 2024-09-27 14:45:18 -04:00

fserv now sends the correct status messages for HTTP(S) proxying

This commit is contained in:
XeonSquared 2020-06-06 14:42:58 +10:00
rodzic 8b4d0e4eb8
commit c1fcfd652e

Wyświetl plik

@ -63,6 +63,7 @@ local function httpHandler(socket,rtype,path)
if code < 200 or code > 299 then if code < 200 or code > 299 then
socket:write(string.format("f%d\n%s",code,message)) socket:write(string.format("f%d\n%s",code,message))
else else
socket:write("y")
local data = "" local data = ""
repeat repeat
coroutine.yield() coroutine.yield()