diff options
author | Teravus Ovares | 2008-05-10 20:25:40 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-05-10 20:25:40 +0000 |
commit | 05de723e51ba27e083e4d5c530bd96311e95c4d9 (patch) | |
tree | c59baaac5894041e589ef6342b991fb47c41ee6d /OpenSim/Framework | |
parent | * More OutPacket refactors. (diff) | |
download | opensim-SC_OLD-05de723e51ba27e083e4d5c530bd96311e95c4d9.zip opensim-SC_OLD-05de723e51ba27e083e4d5c530bd96311e95c4d9.tar.gz opensim-SC_OLD-05de723e51ba27e083e4d5c530bd96311e95c4d9.tar.bz2 opensim-SC_OLD-05de723e51ba27e083e4d5c530bd96311e95c4d9.tar.xz |
* Refactored two more OutPackets. ObjectPropertiesFamily, and Object Properties.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 09c6329..a01ee0b 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -941,6 +941,17 @@ namespace OpenSim.Framework | |||
941 | 941 | ||
942 | void SendShutdownConnectionNotice(); | 942 | void SendShutdownConnectionNotice(); |
943 | void SendSimStats(Packet pack); | 943 | void SendSimStats(Packet pack); |
944 | void SendObjectPropertiesFamilyData(uint RequestFlags, LLUUID ObjectUUID, LLUUID OwnerID, LLUUID GroupID, | ||
945 | uint BaseMask, uint OwnerMask, uint GroupMask, uint EveryoneMask, | ||
946 | uint NextOwnerMask, int OwnershipCost, byte SaleType, int SalePrice, uint Category, | ||
947 | LLUUID LastOwnerID, string ObjectName, string Description); | ||
948 | |||
949 | void SendObjectPropertiesReply(LLUUID ItemID, ulong CreationDate, LLUUID CreatorUUID, LLUUID FolderUUID, LLUUID FromTaskUUID, | ||
950 | LLUUID GroupUUID, short InventorySerial, LLUUID LastOwnerUUID, LLUUID ObjectUUID, | ||
951 | LLUUID OwnerUUID, string TouchTitle, byte[] TextureID, string SitTitle, string ItemName, | ||
952 | string ItemDescription, uint OwnerMask, uint NextOwnerMask, uint GroupMask, uint EveryoneMask, | ||
953 | uint BaseMask); | ||
954 | |||
944 | 955 | ||
945 | byte[] GetThrottlesPacked(float multiplier); | 956 | byte[] GetThrottlesPacked(float multiplier); |
946 | 957 | ||