File

util/time.lua @ 7652:7cc3d6c764ce

mod_bosh: Log when a stanza isn't handled because we can't find a session for it
author Matthew Wild <mwild1@gmail.com>
date Fri, 02 Sep 2016 21:57:40 +0100
parent 7461:72e48bddf617
line wrap: on
line source

-- Import gettime() from LuaSocket, as a way to access high-resolution time
-- in a platform-independent way

local socket_gettime = require "socket".gettime;

return {
	now = socket_gettime;
}