view util/roster.lua @ 3398:abc4a52aef02

net.server_select: Remove 'now' parameter from starttls(), and base it on whether the sendbuffer is empty instead
author Matthew Wild <mwild1@gmail.com>
date Thu, 22 Jul 2010 13:19:37 +0100
parents 69442c83602e
children
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;