Software /
code /
prosody
Comparison
core/rostermanager.lua @ 5355:11eff33f60d3
Merge 0.9->trunk
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 20 Mar 2013 20:34:38 +0000 |
parent | 5348:ca0d820e9318 |
child | 5429:25333de6e7c7 |
comparison
equal
deleted
inserted
replaced
5346:b8fbb9d07efc | 5355:11eff33f60d3 |
---|---|
9 | 9 |
10 | 10 |
11 | 11 |
12 local log = require "util.logger".init("rostermanager"); | 12 local log = require "util.logger".init("rostermanager"); |
13 | 13 |
14 local setmetatable = setmetatable; | 14 local pairs = pairs; |
15 local format = string.format; | |
16 local pcall = pcall; | |
17 local pairs, ipairs = pairs, ipairs; | |
18 local tostring = tostring; | 15 local tostring = tostring; |
19 | 16 |
20 local hosts = hosts; | 17 local hosts = hosts; |
21 local bare_sessions = bare_sessions; | 18 local bare_sessions = bare_sessions; |
22 | 19 |