Diff

plugins/mod_legacyauth.lua @ 891:236d1ce9fa99

mod_legacyauth: Added stream feature: <auth xmlns='http://jabber.org/features/iq-auth'/>
author Waqas Hussain <waqas20@gmail.com>
date Sun, 08 Mar 2009 04:49:51 +0500
parent 760:90ce865eebd8
child 896:2c0b9e3c11c3
line wrap: on
line diff
--- a/plugins/mod_legacyauth.lua	Sun Mar 08 03:46:44 2009 +0500
+++ b/plugins/mod_legacyauth.lua	Sun Mar 08 04:49:51 2009 +0500
@@ -12,6 +12,9 @@
 local t_concat = table.concat;
 
 module:add_feature("jabber:iq:auth");
+module:add_event_hook("stream-features", function (session, features)
+	if not session.username then features:tag("auth", {xmlns='http://jabber.org/features/iq-auth'}):up(); end
+end);
 
 module:add_iq_handler("c2s_unauthed", "jabber:iq:auth", 
 		function (session, stanza)