File

util/roster.lua @ 3396:23cf369ed1c3

net.server_event: Fix to not call onconnect a second time after the SSL handshake for starttls connections (thanks Flo)
author Matthew Wild <mwild1@gmail.com>
date Thu, 22 Jul 2010 11:43:42 +0100
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;