Just make it compile :)
parent
101f60ea88
commit
490c093636
|
@ -108,8 +108,8 @@ namespace OpenSim.Server.Handlers.Presence
|
|||
return FailureResult();
|
||||
|
||||
|
||||
if (m_PresenceService.Report(info))
|
||||
return SuccessResult();
|
||||
// if (m_PresenceService.ReportAgent(info))
|
||||
// return SuccessResult();
|
||||
|
||||
return FailureResult();
|
||||
}
|
||||
|
|
|
@ -50,15 +50,36 @@ namespace OpenSim.Services.PresenceService
|
|||
{
|
||||
}
|
||||
|
||||
public bool Report(PresenceInfo presence)
|
||||
public bool LoginAgent(UUID principalID, UUID sessionID,
|
||||
UUID secureSessionID)
|
||||
{
|
||||
PresenceData p = new PresenceData();
|
||||
p.Data = new Dictionary<string, string>();
|
||||
|
||||
p.PrincipalID = presence.PrincipalID;
|
||||
p.RegionID = presence.RegionID;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
public bool LogoutAgent(UUID sessionID)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
public bool LogoutRegionAgents(UUID regionID)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
public bool ReportAgent(UUID sessionID, UUID regionID, Vector3 position, Vector3 lookAt)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
public PresenceInfo GetAgent(UUID sessionID)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public PresenceInfo[] GetAgents(UUID[] PrincipalIDs)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue