Really make module port selection work. Implement port setting in

LLProxyLoginModule.
This commit is contained in:
Melanie
2009-10-21 02:19:45 +01:00
parent f568982e69
commit 2a886fd76c
4 changed files with 46 additions and 7 deletions

View File

@@ -42,8 +42,10 @@ namespace OpenSim.Framework
set { instance = value; }
}
public IHttpServer GetHttpServer(uint port)
public static IHttpServer GetHttpServer(uint port)
{
if (port == 0)
return Instance;
if (port == Instance.Port)
return Instance;