File

libs/net.lua @ 495:1ca531495c3d

squishy: Move some compat layers into verse namespace This way, if the prosody libraries are available, they could be used from the verse compat layres
author Kim Alvefur <zash@zash.se>
date Wed, 21 Jun 2023 21:03:05 +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
}