# HG changeset patch # User Matthew Wild # Date 1254527805 -3600 # Node ID 7456bb2a3458daed82ded3f845f2394896c35a75 # Parent 36e1238db2f2ad47eb6e6f438936a01c5dd9e159 mod_bosh: Update to use new httpserver.new_from_config syntax diff -r 36e1238db2f2 -r 7456bb2a3458 plugins/mod_bosh.lua --- 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);