function auth_request(client_id, request, callback)
if not request then
local stat = http_output_client_list[client_id]
local uptime = math.floor((os.time() -
stat.st) / 60)
if uptime > 0 then
log.info("[Channel]:" .. stat.channel_name .. " [Client]:" .. stat.request.addr .. " [Uptime]:" .. uptime .. "min.")
end
return nil
end
callback(true)
end