diff options
author | MW | 2007-06-14 12:27:36 +0000 |
---|---|---|
committer | MW | 2007-06-14 12:27:36 +0000 |
commit | 3aecb5437953c793212834e0e9426a4852d85458 (patch) | |
tree | a3d868c450467afee2f557ee85717d1269cf39d0 /Common/OpenSim.Servers | |
parent | * Applied Prebuild fixes to Sugilite (diff) | |
download | opensim-SC_OLD-3aecb5437953c793212834e0e9426a4852d85458.zip opensim-SC_OLD-3aecb5437953c793212834e0e9426a4852d85458.tar.gz opensim-SC_OLD-3aecb5437953c793212834e0e9426a4852d85458.tar.bz2 opensim-SC_OLD-3aecb5437953c793212834e0e9426a4852d85458.tar.xz |
Deleted IGridServer interface (and classes implementing that).
Diffstat (limited to 'Common/OpenSim.Servers')
-rw-r--r-- | Common/OpenSim.Servers/LocalUserProfileManager.cs | 6 | ||||
-rw-r--r-- | Common/OpenSim.Servers/LoginServer.cs | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Common/OpenSim.Servers/LocalUserProfileManager.cs b/Common/OpenSim.Servers/LocalUserProfileManager.cs index 4f327a7..773de5a 100644 --- a/Common/OpenSim.Servers/LocalUserProfileManager.cs +++ b/Common/OpenSim.Servers/LocalUserProfileManager.cs | |||
@@ -41,16 +41,16 @@ namespace OpenSim.UserServer | |||
41 | { | 41 | { |
42 | public class LocalUserProfileManager : UserProfileManager | 42 | public class LocalUserProfileManager : UserProfileManager |
43 | { | 43 | { |
44 | private IGridServer m_gridServer; | 44 | // private IGridServer m_gridServer; |
45 | private int m_port; | 45 | private int m_port; |
46 | private string m_ipAddr; | 46 | private string m_ipAddr; |
47 | private uint regionX; | 47 | private uint regionX; |
48 | private uint regionY; | 48 | private uint regionY; |
49 | private AddNewSessionHandler AddSession; | 49 | private AddNewSessionHandler AddSession; |
50 | 50 | ||
51 | public LocalUserProfileManager(IGridServer gridServer, int simPort, string ipAddr , uint regX, uint regY) | 51 | public LocalUserProfileManager( int simPort, string ipAddr , uint regX, uint regY) |
52 | { | 52 | { |
53 | m_gridServer = gridServer; | 53 | |
54 | m_port = simPort; | 54 | m_port = simPort; |
55 | m_ipAddr = ipAddr; | 55 | m_ipAddr = ipAddr; |
56 | regionX = regX; | 56 | regionX = regX; |
diff --git a/Common/OpenSim.Servers/LoginServer.cs b/Common/OpenSim.Servers/LoginServer.cs index c63eb28..1243147 100644 --- a/Common/OpenSim.Servers/LoginServer.cs +++ b/Common/OpenSim.Servers/LoginServer.cs | |||
@@ -53,7 +53,7 @@ namespace OpenSim.UserServer | |||
53 | /// </summary> | 53 | /// </summary> |
54 | public class LoginServer : LoginService, IUserServer | 54 | public class LoginServer : LoginService, IUserServer |
55 | { | 55 | { |
56 | private IGridServer m_gridServer; | 56 | //private IGridServer m_gridServer; |
57 | public IPAddress clientAddress = IPAddress.Loopback; | 57 | public IPAddress clientAddress = IPAddress.Loopback; |
58 | public IPAddress remoteAddress = IPAddress.Any; | 58 | public IPAddress remoteAddress = IPAddress.Any; |
59 | private int NumClients; | 59 | private int NumClients; |
@@ -96,7 +96,7 @@ namespace OpenSim.UserServer | |||
96 | 96 | ||
97 | this._mpasswd = EncodePassword("testpass"); | 97 | this._mpasswd = EncodePassword("testpass"); |
98 | 98 | ||
99 | userManager = new LocalUserProfileManager(this.m_gridServer, m_simPort, m_simAddr, regionX, regionY); | 99 | userManager = new LocalUserProfileManager( m_simPort, m_simAddr, regionX, regionY); |
100 | //userManager.InitUserProfiles(); | 100 | //userManager.InitUserProfiles(); |
101 | userManager.SetKeys("", "", "", "Welcome to OpenSim"); | 101 | userManager.SetKeys("", "", "", "Welcome to OpenSim"); |
102 | } | 102 | } |