# HG changeset patch # User Matthew Wild # Date 1246591470 -3600 # Node ID fc420e9585c2fe82c91d1afad42f3d509ed68b02 # Parent 95f8024c77fcda5136f5c667f9aa30ccb924dfd1 hostmanager: Add disallow_s2s to config, defaults to false unless anonymous_login is enabled, then defaults to true diff -r 95f8024c77fc -r fc420e9585c2 core/hostmanager.lua --- a/core/hostmanager.lua Fri Jul 03 04:04:27 2009 +0100 +++ b/core/hostmanager.lua Fri Jul 03 04:24:30 2009 +0100 @@ -27,7 +27,12 @@ eventmanager.add_event_hook("server-starting", load_enabled_hosts); function activate(host, host_config) - hosts[host] = {type = "local", connected = true, sessions = {}, host = host, s2sout = {}, events = events_new() }; + hosts[host] = {type = "local", connected = true, sessions = {}, + host = host, s2sout = {}, events = events_new(), + disallow_s2s = configmanager.get(host, "core", "disallow_s2s") + or (configmanager.get(host, "core", "anonymous_login") + and (configmanager.get(host, "core", "disallow_s2s") ~= false)) + }; log((hosts_loaded_once and "info") or "debug", "Activated host: %s", host); eventmanager.fire_event("host-activated", host, host_config); end