view util/jid.lua @ 55:4edb942e9dff

Some notes of the stanza and session structures
author Waqas Hussain <waqas20@gmail.com>
date Sat, 04 Oct 2008 19:32:02 +0500
parents b847875801e5
children cfbd3b849f9e
line wrap: on
line source


local match = string.match;

module "jid"

function split(jid)
	if not jid then return nil; end
	local node = match(jid, "^([^@]+)@");
	local server = (node and match(jid, ".-@([^@/]+)")) or match(jid, "^([^@/]+)");
	local resource = match(jid, "/(.+)$");
	return node, server, resource;
end