util/roster.lua

Wed, 14 Jul 2010 19:56:57 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Wed, 14 Jul 2010 19:56:57 +0500
changeset 3363
a4bb658d3fcb
parent 3359
69442c83602e
permissions
-rw-r--r--

SASL: Simplified sasl_handler:mechanisms() to return a set, and not an array.

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