mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
11 lines
260 B
Lua
11 lines
260 B
Lua
|
|
local match = string.match;
|
|
|
|
module "jid"
|
|
|
|
function split(jid)
|
|
local node = match(jid, "^([^@]+)@");
|
|
local server = (node and match(jid, ".-@([^@/]+)")) or match(jid, "^([^@/]+)");
|
|
local resource = match(jid, "/(.+)$");
|
|
return node, server, resource;
|
|
end
|