aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack
diff options
context:
space:
mode:
authorMelanie2009-12-26 04:13:27 +0000
committerMelanie2009-12-26 04:13:27 +0000
commitf3a48606359cd6082f294af7defcdede67bf5853 (patch)
tree642aab2baa9247d695cb88b729a0b841a9d6e1a7 /OpenSim/Region/ClientStack
parentMake the GenericTableHandler work as intended (diff)
parentAdd AvatarInterestsReply (diff)
downloadopensim-SC_OLD-f3a48606359cd6082f294af7defcdede67bf5853.zip
opensim-SC_OLD-f3a48606359cd6082f294af7defcdede67bf5853.tar.gz
opensim-SC_OLD-f3a48606359cd6082f294af7defcdede67bf5853.tar.bz2
opensim-SC_OLD-f3a48606359cd6082f294af7defcdede67bf5853.tar.xz
Merge branch 'master' into careminster
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index e7ce2e0..3ac4e5e 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -15792,5 +15792,22 @@ namespace OpenSim.Region.ClientStack.LindenUDP
15792 15792
15793 return osdEvent; 15793 return osdEvent;
15794 } 15794 }
15795
15796 public void SendAvatarInterestsReply(UUID avatarID, uint wantMask, string wantText, uint skillsMask, string skillsText, string languages)
15797 {
15798 AvatarInterestsReplyPacket packet = (AvatarInterestsReplyPacket)PacketPool.Instance.GetPacket(PacketType.AvatarInterestsReply);
15799
15800 packet.AgentData = new AvatarInterestsReplyPacket.AgentDataBlock();
15801 packet.AgentData.AgentID = AgentId;
15802 packet.AgentData.AvatarID = avatarID;
15803
15804 packet.PropertiesData = new AvatarInterestsReplyPacket.PropertiesDataBlock();
15805 packet.PropertiesData.WantToMask = wantMask;
15806 packet.PropertiesData.WantToText = Utils.StringToBytes(wantText);
15807 packet.PropertiesData.SkillsMask = skillsMask;
15808 packet.PropertiesData.SkillsText = Utils.StringToBytes(skillsText);
15809 packet.PropertiesData.LanguagesText = Utils.StringToBytes(languages);
15810 OutPacket(packet, ThrottleOutPacketType.Task);
15811 }
15795 } 15812 }
15796} 15813}