File

util/time.lua @ 8482:8b2219011386

MUC: Check delay tags when they are received instead of when they are sent
author Kim Alvefur <zash@zash.se>
date Thu, 21 Dec 2017 13:48:21 +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;
}