blob: 784d2b645739eb2bd62aaa55a18ef353d5dfc049 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
return _M;
|