util/roster.lua

Thu, 15 Jul 2010 11:25:41 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Thu, 15 Jul 2010 11:25:41 +0500
changeset 3367
598c33a99a31
parent 3359
69442c83602e
permissions
-rw-r--r--

certmanager: Use an empty table as the default ssl config when a global 'ssl' config option isn't specified (fixes a top-level traceback on startup).

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