File

util/roster.lua @ 3364:6a5d77924949

util.sasl: Use the proper session-specific table of mechanisms when selecting a mechanism, and not the global table.
author Waqas Hussain <waqas20@gmail.com>
date Wed, 14 Jul 2010 20:05:25 +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;