Finally works when serving multiple files simultaneously. Still need to clan up
This commit is contained in:
parent
d5fcc71c23
commit
b10a137712
@ -14,14 +14,25 @@ end
|
||||
|
||||
return function (connection, args)
|
||||
sendHeader(connection, 200, "OK", getMimeType(args.ext))
|
||||
file.open(args.file)
|
||||
print("Begin sending:", args.file)
|
||||
-- Send file in little chunks
|
||||
while true do
|
||||
local chunk = file.read(1024)
|
||||
if chunk == nil then break end
|
||||
local continue = true
|
||||
local bytesSent = 0
|
||||
while continue do
|
||||
file.open(args.file)
|
||||
file.seek("set", bytesSent)
|
||||
local chunk = file.read(512)
|
||||
file.close()
|
||||
if chunk == nil then
|
||||
continue = false
|
||||
else
|
||||
if #chunk == 512 then
|
||||
coroutine.yield()
|
||||
end
|
||||
connection:send(chunk)
|
||||
bytesSent = bytesSent + #chunk
|
||||
print("Sent" .. args.file, bytesSent)
|
||||
end
|
||||
end
|
||||
print("Finished sending:", args.file)
|
||||
file.close()
|
||||
end
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user