Software /
code /
prosody
Diff
plugins/mod_bosh.lua @ 1869:7456bb2a3458
mod_bosh: Update to use new httpserver.new_from_config syntax
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sat, 03 Oct 2009 00:56:45 +0100 |
parent | 1865:388b125b784a |
child | 2077:e33658f6052c |
line wrap: on
line diff
--- a/plugins/mod_bosh.lua Sat Oct 03 00:54:58 2009 +0100 +++ b/plugins/mod_bosh.lua Sat Oct 03 00:56:45 2009 +0100 @@ -298,6 +298,6 @@ 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);