diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-10-03 00:56:45 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-10-03 00:56:45 +0100 |
commit | 0c362cbf8d1978d38e680db1538582c851b920c8 (patch) | |
tree | e2035be41788bed35f1a9c1c16e95e816d32ec1f /plugins | |
parent | 6265a85de2055048bf60ae8e598d1667ebf660c7 (diff) | |
download | prosody-0c362cbf8d1978d38e680db1538582c851b920c8.tar.gz prosody-0c362cbf8d1978d38e680db1538582c851b920c8.zip |
mod_bosh: Update to use new httpserver.new_from_config syntax
Diffstat (limited to 'plugins')
-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 0dd4a192..fddd5c11 100644 --- a/plugins/mod_bosh.lua +++ b/plugins/mod_bosh.lua @@ -298,6 +298,6 @@ function on_timer() end local ports = module:get_option("bosh_ports") or { 5280 }; -httpserver.new_from_config(ports, "http-bind", handle_request); +httpserver.new_from_config(ports, handle_request, { base = "http-bind" }); server.addtimer(on_timer); |