Software /
code /
prosody
Comparison
net/connlisteners.lua @ 3540:bc139431830b
Monster whitespace commit (beware the whitespace monster).
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Sat, 16 Oct 2010 23:00:42 +0500 |
parent | 2925:692b3c6c5bd2 |
child | 4220:05f4db0459b1 |
comparison
equal
deleted
inserted
replaced
3539:8bbd965267b2 | 3540:bc139431830b |
---|---|
11 local listeners_dir = (CFG_SOURCEDIR or ".").."/net/"; | 11 local listeners_dir = (CFG_SOURCEDIR or ".").."/net/"; |
12 local server = require "net.server"; | 12 local server = require "net.server"; |
13 local log = require "util.logger".init("connlisteners"); | 13 local log = require "util.logger".init("connlisteners"); |
14 local tostring = tostring; | 14 local tostring = tostring; |
15 | 15 |
16 local dofile, pcall, error = | 16 local dofile, pcall, error = |
17 dofile, pcall, error | 17 dofile, pcall, error |
18 | 18 |
19 module "connlisteners" | 19 module "connlisteners" |
20 | 20 |
21 local listeners = {}; | 21 local listeners = {}; |
22 | 22 |