Database and presence changes. Untested

This commit is contained in:
Melanie
2009-12-28 17:34:42 +00:00
parent f43a648052
commit 92a40129b5
8 changed files with 39 additions and 44 deletions

View File

@@ -148,7 +148,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Presence
#region IPresenceService
public bool LoginAgent(UUID principalID, UUID sessionID, UUID secureSessionID)
public bool LoginAgent(string userID, UUID sessionID, UUID secureSessionID)
{
m_log.Warn("[LOCAL PRESENCE CONNECTOR]: LoginAgent connector not implemented at the simulators");
return false;
@@ -175,9 +175,9 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Presence
return m_PresenceService.GetAgent(sessionID);
}
public PresenceInfo[] GetAgents(string[] principalIDs)
public PresenceInfo[] GetAgents(string[] userIDs)
{
return m_PresenceService.GetAgents(principalIDs);
return m_PresenceService.GetAgents(userIDs);
}
#endregion

View File

@@ -121,7 +121,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Presence
#region IPresenceService
public bool LoginAgent(UUID principalID, UUID sessionID, UUID secureSessionID)
public bool LoginAgent(string userID, UUID sessionID, UUID secureSessionID)
{
m_log.Warn("[REMOTE PRESENCE CONNECTOR]: LoginAgent connector not implemented at the simulators");
return false;
@@ -148,9 +148,9 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Presence
return m_RemoteConnector.GetAgent(sessionID);
}
public PresenceInfo[] GetAgents(string[] principalIDs)
public PresenceInfo[] GetAgents(string[] userIDs)
{
return m_RemoteConnector.GetAgents(principalIDs);
return m_RemoteConnector.GetAgents(userIDs);
}
#endregion