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

@@ -241,6 +241,11 @@ namespace OpenSim.Region.Examples.SimpleModule
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
private UUID myID = UUID.Random();
@@ -1007,6 +1012,14 @@ namespace OpenSim.Region.Examples.SimpleModule
return true;
}
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)
{
}
#endregion
}
}