teal-src/util/net.d.tl
author Kim Alvefur <zash@zash.se>
Thu, 20 May 2021 23:13:54 +0200
changeset 11581 60bee6822d79
parent 11436 113f3912c7cb
permissions -rw-r--r--
teal: Describe util.net.local_addresses() return type


local enum type_strings
	"both"
	"ipv4"
	"ipv6"
end

local record lib
	local_addresses : function (type_strings, boolean) : { string }
	pton : function (string):string
	ntop : function (string):string
end
return lib