File

teal-src/util/jid.d.tl @ 11743:856dada099fa

net.server_epoll: Split, attempt to clarify dirty noise message Only relevant because a "dirty" connection (with incoming data in LuaSocket's buffer) does not count as "readable" according to epoll, so special care needs to be taken to keep on processing it.
author Kim Alvefur <zash@zash.se>
date Mon, 16 Aug 2021 20:15:38 +0200
parent 11432:113f3912c7cb
line wrap: on
line source

local record lib
	split : function (string) : string, string, string
	bare : function (string) : string
	prepped_split : function (string, boolean) : string, string, string
	join : function (string, string, string) : string
	prep : function (string, boolean) : string
	compare : function (string, string) : boolean
	node : function (string) : string
	host : function (string) : string
	resource : function (string) : string
	escape : function (string) : string
	unescape : function (string) : string
end

return lib