File

util/time.lua @ 8898:e6ba0e5260b4

net.dns: Also cache records from the 'additional' section Could be getting A/AAAA records here when asking for SRV
author Kim Alvefur <zash@zash.se>
date Sun, 03 Jun 2018 00:40:42 +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;
}