File

util/time.lua @ 7544:fb68aad9dc4d

net.server: Only update configuration if server backend supports changing settings
author Kim Alvefur <zash@zash.se>
date Wed, 10 Aug 2016 16:50:13 +0200
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;
}