Plumb in the 4 missing classified events and the 3 packet methods

This commit is contained in:
Melanie Thielker
2008-12-23 18:16:30 +00:00
parent 151d3afe16
commit fc053a6af8
5 changed files with 171 additions and 0 deletions

View File

@@ -237,6 +237,11 @@ namespace OpenSim.Tests.Common.Mock
public event TeleportLureRequest OnTeleportLureRequest;
public event NetworkStats OnNetworkStatsUpdate;
public event ClassifiedInfoRequest OnClassifiedInfoRequest;
public event ClassifiedInfoUpdate OnClassifiedInfoUpdate;
public event ClassifiedDelete OnClassifiedDelete;
public event ClassifiedDelete OnClassifiedGodDelete;
#pragma warning restore 67
/// <value>
@@ -953,5 +958,13 @@ namespace OpenSim.Tests.Common.Mock
return false;
}
public void SendAvatarClassifiedReply(UUID targetID, UUID[] classifiedID, string[] name)
{
}
public void SendClassifiedInfoReply(UUID classifiedID, UUID creatorID, uint creationDate, uint expirationDate, uint category, string name, string description, UUID parcelID, uint parentEstate, UUID snapshotID, string simName, Vector3 globalPos, string parcelName, byte classifiedFlags, int price)
{
}
}
}