File

libs/net.lua @ 501:419c248919e8

util.dataforms: Remove local copy The main difference was the from_stanza() function, which was used in by 'clix adhoc', so moving it there seems sensible. Maybe reconsider upstreaming it to Prosody, but it's not used anywhere there.
author Kim Alvefur <zash@zash.se>
date Fri, 23 Jun 2023 12:38:58 +0200
parent 478:cf6626a12e0e
line wrap: on
line source

return {
	pton = function (ip)
		if ip:find":" then
			return "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
		else
			return "\0\0\0\0"
		end
	end
}