mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_uptime: Convert to unix line endings
This commit is contained in:
parent
2cbe18d731
commit
aa77dac9da
1 changed files with 24 additions and 24 deletions
|
@ -7,27 +7,27 @@
|
||||||
--
|
--
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
local st = require "util.stanza"
|
local st = require "util.stanza"
|
||||||
|
|
||||||
local jid_split = require "util.jid".split;
|
local jid_split = require "util.jid".split;
|
||||||
local t_concat = table.concat;
|
local t_concat = table.concat;
|
||||||
|
|
||||||
local start_time = os.time();
|
local start_time = os.time();
|
||||||
|
|
||||||
module:add_feature("jabber:iq:last");
|
module:add_feature("jabber:iq:last");
|
||||||
|
|
||||||
module:add_iq_handler({"c2s", "s2sin"}, "jabber:iq:last",
|
module:add_iq_handler({"c2s", "s2sin"}, "jabber:iq:last",
|
||||||
function (origin, stanza)
|
function (origin, stanza)
|
||||||
if stanza.tags[1].name == "query" then
|
if stanza.tags[1].name == "query" then
|
||||||
if stanza.attr.type == "get" then
|
if stanza.attr.type == "get" then
|
||||||
local node, host, resource = jid_split(stanza.attr.to);
|
local node, host, resource = jid_split(stanza.attr.to);
|
||||||
if node or resource then
|
if node or resource then
|
||||||
-- TODO
|
-- TODO
|
||||||
else
|
else
|
||||||
origin.send(st.reply(stanza):tag("query", {xmlns = "jabber:iq:last", seconds = tostring(os.difftime(os.time(), start_time))}));
|
origin.send(st.reply(stanza):tag("query", {xmlns = "jabber:iq:last", seconds = tostring(os.difftime(os.time(), start_time))}));
|
||||||
return true;
|
return true;
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end);
|
end);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue