Created a single log function that prints a standard message that includes IP and port of client. Remove or commented out other debug prints.
28 lines
1.0 KiB
Lua
28 lines
1.0 KiB
Lua
-- httpserver-static.lua
|
|
-- Part of nodemcu-httpserver, handles sending static files to client.
|
|
-- Author: Marcos Kirsch
|
|
|
|
return function (connection, req, args)
|
|
dofile("httpserver-header.lc")(connection, 200, args.ext, args.isGzipped)
|
|
-- Send file in little chunks
|
|
local bytesRemaining = file.list()[args.file]
|
|
-- Chunks larger than 1024 don't work.
|
|
-- https://github.com/nodemcu/nodemcu-firmware/issues/1075
|
|
local chunkSize = 1024
|
|
local fileHandle = file.open(args.file)
|
|
while bytesRemaining > 0 do
|
|
local bytesToRead = 0
|
|
if bytesRemaining > chunkSize then bytesToRead = chunkSize else bytesToRead = bytesRemaining end
|
|
local chunk = fileHandle:read(bytesToRead)
|
|
connection:send(chunk)
|
|
bytesRemaining = bytesRemaining - #chunk
|
|
--print(args.file .. ": Sent "..#chunk.. " bytes, " .. bytesRemaining .. " to go.")
|
|
chunk = nil
|
|
collectgarbage()
|
|
end
|
|
-- print("Finished sending: ", args.file)
|
|
fileHandle:close()
|
|
fileHandle = nil
|
|
collectgarbage()
|
|
end
|