plugins/mod_admin_telnet.lua
changeset 4779 9f2639b3d9b1
parent 4684 dc70c4ffb66d
child 4807 2999f0fd1347
--- a/plugins/mod_admin_telnet.lua	Sat Apr 28 15:47:43 2012 +0100
+++ b/plugins/mod_admin_telnet.lua	Sat Apr 28 17:18:03 2012 +0200
@@ -440,6 +440,16 @@
 	end
 end
 
+function def_env.c2s:count(match_jid)
+	local count = 0;
+	show_c2s(function (jid, session)
+		if (not match_jid) or jid:match(match_jid) then
+			count = count + 1;
+		end		
+	end);
+	return true, "Total: "..count.." clients";
+end
+
 function def_env.c2s:show(match_jid)
 	local print, count = self.session.print, 0;
 	local curr_host;