diff --git a/pkgs/tufted/tftp.lua b/pkgs/tufted/tftp.lua index 55d22aa8..f7e0ac5c 100644 --- a/pkgs/tufted/tftp.lua +++ b/pkgs/tufted/tftp.lua @@ -286,7 +286,7 @@ function tftp:listen(rrq_generator_callback, wrq_generator_callback, hosts, port }``` On error, responds to the client with an ERROR packet, and returns nil. ]] - local okay, generator, tsize = pcall(callbacks[request.opcode], request.filename) + local okay, generator, tsize = pcall(callbacks[request.opcode], request.filename, host, port) if not okay then requestsocket:sendto(self.ERROR(ERR_NOTFOUND), host, port) return nil