util/roster.lua

Sun, 18 Jul 2010 17:50:38 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Sun, 18 Jul 2010 17:50:38 +0500
changeset 3391
8ac3f60af3c4
parent 3359
69442c83602e
permissions
-rw-r--r--

mod_saslauth: Got rid of undocumented and useless 'sasl_realm' config option (was only used for anonymous auth, and that didn't make sense).

module "roster"

local roster = {};
roster.__index = roster;

function new()
	return setmetatable({}, roster);
end

function roster:subscribers()
end

function roster:subscriptions()
end

function roster:items()
end

return _M;

mercurial