diff options
author | Melanie | 2009-10-21 02:19:45 +0100 |
---|---|---|
committer | Melanie | 2009-10-21 02:19:45 +0100 |
commit | 2a886fd76c9df972fa3096d19b37047f7eda672f (patch) | |
tree | b40b4af467af8c72b48714c4d691aedbd2e67a63 /OpenSim/Framework/MainServer.cs | |
parent | Cleanup and comment the region module loader. Add support for configuring (diff) | |
download | opensim-SC_OLD-2a886fd76c9df972fa3096d19b37047f7eda672f.zip opensim-SC_OLD-2a886fd76c9df972fa3096d19b37047f7eda672f.tar.gz opensim-SC_OLD-2a886fd76c9df972fa3096d19b37047f7eda672f.tar.bz2 opensim-SC_OLD-2a886fd76c9df972fa3096d19b37047f7eda672f.tar.xz |
Really make module port selection work. Implement port setting in
LLProxyLoginModule.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/MainServer.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Framework/MainServer.cs b/OpenSim/Framework/MainServer.cs index 21033b3..7da4893 100644 --- a/OpenSim/Framework/MainServer.cs +++ b/OpenSim/Framework/MainServer.cs | |||
@@ -42,8 +42,10 @@ namespace OpenSim.Framework | |||
42 | set { instance = value; } | 42 | set { instance = value; } |
43 | } | 43 | } |
44 | 44 | ||
45 | public IHttpServer GetHttpServer(uint port) | 45 | public static IHttpServer GetHttpServer(uint port) |
46 | { | 46 | { |
47 | if (port == 0) | ||
48 | return Instance; | ||
47 | if (port == Instance.Port) | 49 | if (port == Instance.Port) |
48 | return Instance; | 50 | return Instance; |
49 | 51 | ||