diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-07-14 21:04:57 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-07-14 21:04:57 +0100 |
commit | 086283ad1d3474993527d7689ac1fb5423aada9b (patch) | |
tree | b284c4b4091fa23a34f7fecd8fb6582a44ea8451 /plugins/mod_bosh.lua | |
parent | fed4a58f4e364a5901420285dcc13397467027a1 (diff) | |
parent | 40f2dda03d4459ebd4e0928e3a671a4024c23b7a (diff) | |
download | prosody-086283ad1d3474993527d7689ac1fb5423aada9b.tar.gz prosody-086283ad1d3474993527d7689ac1fb5423aada9b.zip |
Merge with 0.5
Diffstat (limited to 'plugins/mod_bosh.lua')
-rw-r--r-- | plugins/mod_bosh.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_bosh.lua b/plugins/mod_bosh.lua index fdda206b..744893c4 100644 --- a/plugins/mod_bosh.lua +++ b/plugins/mod_bosh.lua @@ -276,6 +276,6 @@ function on_timer() end local ports = config.get(module.host, "core", "bosh_ports") or { 5280 }; -httpserver.new_from_config(ports, handle_request); +httpserver.new_from_config(ports, "http-bind", handle_request); server.addtimer(on_timer); |