diff options
author | Melanie Thielker | 2008-12-23 18:16:30 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-12-23 18:16:30 +0000 |
commit | fc053a6af8cf2f9dc158d8bc3d3ff5597d50b69f (patch) | |
tree | 4d68ff7e79e99d167b234c7c0cce92715f5a9cd2 /OpenSim/Tests/Common/Mock/TestClient.cs | |
parent | * Remove mono compiler warning (diff) | |
download | opensim-SC_OLD-fc053a6af8cf2f9dc158d8bc3d3ff5597d50b69f.zip opensim-SC_OLD-fc053a6af8cf2f9dc158d8bc3d3ff5597d50b69f.tar.gz opensim-SC_OLD-fc053a6af8cf2f9dc158d8bc3d3ff5597d50b69f.tar.bz2 opensim-SC_OLD-fc053a6af8cf2f9dc158d8bc3d3ff5597d50b69f.tar.xz |
Plumb in the 4 missing classified events and the 3 packet methods
Diffstat (limited to 'OpenSim/Tests/Common/Mock/TestClient.cs')
-rw-r--r-- | OpenSim/Tests/Common/Mock/TestClient.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs index 70a2d11..e7cdee9 100644 --- a/OpenSim/Tests/Common/Mock/TestClient.cs +++ b/OpenSim/Tests/Common/Mock/TestClient.cs | |||
@@ -237,6 +237,11 @@ namespace OpenSim.Tests.Common.Mock | |||
237 | public event TeleportLureRequest OnTeleportLureRequest; | 237 | public event TeleportLureRequest OnTeleportLureRequest; |
238 | public event NetworkStats OnNetworkStatsUpdate; | 238 | public event NetworkStats OnNetworkStatsUpdate; |
239 | 239 | ||
240 | public event ClassifiedInfoRequest OnClassifiedInfoRequest; | ||
241 | public event ClassifiedInfoUpdate OnClassifiedInfoUpdate; | ||
242 | public event ClassifiedDelete OnClassifiedDelete; | ||
243 | public event ClassifiedDelete OnClassifiedGodDelete; | ||
244 | |||
240 | #pragma warning restore 67 | 245 | #pragma warning restore 67 |
241 | 246 | ||
242 | /// <value> | 247 | /// <value> |
@@ -953,5 +958,13 @@ namespace OpenSim.Tests.Common.Mock | |||
953 | return false; | 958 | return false; |
954 | } | 959 | } |
955 | 960 | ||
961 | public void SendAvatarClassifiedReply(UUID targetID, UUID[] classifiedID, string[] name) | ||
962 | { | ||
963 | } | ||
964 | |||
965 | 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) | ||
966 | { | ||
967 | } | ||
968 | |||
956 | } | 969 | } |
957 | } | 970 | } |