diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-10-22 17:36:21 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-10-22 17:36:21 +0100 |
commit | ee7b432ab1d450a42fae24b37c79b7fbda7f4e6b (patch) | |
tree | f5c0a969dcc3825bb99c3e1c38597056be201152 /net/connhandlers.lua | |
parent | d510d54b2809b31bcbbc1bcbbe461fc7b5f91a41 (diff) | |
download | prosody-ee7b432ab1d450a42fae24b37c79b7fbda7f4e6b.tar.gz prosody-ee7b432ab1d450a42fae24b37c79b7fbda7f4e6b.zip |
Abstract connections with "connection listeners"
- Added connlistener for xmppclient
- SASL/TLS now use a new session:reset_stream() method
- main.lua on its way to being a bit neater
Diffstat (limited to 'net/connhandlers.lua')
-rw-r--r-- | net/connhandlers.lua | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/net/connhandlers.lua b/net/connhandlers.lua deleted file mode 100644 index 493f1946..00000000 --- a/net/connhandlers.lua +++ /dev/null @@ -1,16 +0,0 @@ - -local lxp = require "lxp" -local init_xmlhandlers = require "core.xmlhandlers" - -module "connhandlers" - - -function new(name, session) - if name == "xmpp-client" then - local parser = lxp.new(init_xmlhandlers(session), ":"); - local parse = parser.parse; - return { data = function (self, data) return parse(parser, data); end, parser = parser } - end -end - -return _M;
\ No newline at end of file |