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.

3359
69442c83602e util.roster: Initial skeleton commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
1 module "roster"
69442c83602e util.roster: Initial skeleton commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
2
69442c83602e util.roster: Initial skeleton commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
3 local roster = {};
69442c83602e util.roster: Initial skeleton commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
4 roster.__index = roster;
69442c83602e util.roster: Initial skeleton commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
5
69442c83602e util.roster: Initial skeleton commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
6 function new()
69442c83602e util.roster: Initial skeleton commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
7 return setmetatable({}, roster);
69442c83602e util.roster: Initial skeleton commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
8 end
69442c83602e util.roster: Initial skeleton commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
9
69442c83602e util.roster: Initial skeleton commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
10 function roster:subscribers()
69442c83602e util.roster: Initial skeleton commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
11 end
69442c83602e util.roster: Initial skeleton commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
12
69442c83602e util.roster: Initial skeleton commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
13 function roster:subscriptions()
69442c83602e util.roster: Initial skeleton commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
14 end
69442c83602e util.roster: Initial skeleton commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
15
69442c83602e util.roster: Initial skeleton commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
16 function roster:items()
69442c83602e util.roster: Initial skeleton commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
17 end
69442c83602e util.roster: Initial skeleton commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
18
69442c83602e util.roster: Initial skeleton commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
19 return _M;

mercurial