File

util/roster.lua @ 3391:8ac3f60af3c4

mod_saslauth: Got rid of undocumented and useless 'sasl_realm' config option (was only used for anonymous auth, and that didn't make sense).
author Waqas Hussain <waqas20@gmail.com>
date Sun, 18 Jul 2010 17:50:38 +0500
parent 3359:69442c83602e
line wrap: on
line source

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;