Fixed some whitespace.

This commit is contained in:
Waqas Hussain 2008-11-06 16:57:10 +05:00
parent 0ff2eacdaf
commit a88ddeb67d
2 changed files with 58 additions and 56 deletions

View file

@ -35,7 +35,9 @@ add_handler("s2sin_unauthed", "result", xmlns_dialback,
origin.to_host = attr.to;
origin.dialback_key = stanza[1];
log("debug", "asking %s if key %s belongs to them", origin.from_host, origin.dialback_key);
send_s2s(origin.to_host, origin.from_host, format("<db:verify from='%s' to='%s' id='%s'>%s</db:verify>", origin.to_host, origin.from_host, origin.streamid, origin.dialback_key));
send_s2s(origin.to_host, origin.from_host,
format("<db:verify from='%s' to='%s' id='%s'>%s</db:verify>", origin.to_host, origin.from_host,
origin.streamid, origin.dialback_key));
hosts[origin.from_host].dialback_verifying = origin;
end);
@ -52,7 +54,8 @@ add_handler({ "s2sout_unauthed", "s2sout" }, "verify", xmlns_dialback,
log("warn", "dialback for "..(origin.dialback_verifying.from_host or "(unknown)").." failed");
valid = "invalid";
end
origin.dialback_verifying.sends2s(format("<db:result from='%s' to='%s' id='%s' type='%s'>%s</db:result>", attr.from, attr.to, attr.id, valid, origin.dialback_verifying.dialback_key));
origin.dialback_verifying.sends2s(format("<db:result from='%s' to='%s' id='%s' type='%s'>%s</db:result>",
attr.from, attr.to, attr.id, valid, origin.dialback_verifying.dialback_key));
end
end);

View file

@ -8,8 +8,7 @@ local xmlns_version = "jabber:iq:version"
local function handle_version_request(session, stanza)
if stanza.attr.type == "get" then
session.send(st.reply(stanza)
:query(xmlns_version)
session.send(st.reply(stanza):query(xmlns_version)
:tag("name"):text("lxmppd"):up()
:tag("version"):text("pre-alpha"):up()
:tag("os"):text("The best one"));