diff options
author | Melanie Thielker | 2009-04-14 03:44:27 +0000 |
---|---|---|
committer | Melanie Thielker | 2009-04-14 03:44:27 +0000 |
commit | a0417f57913735a032270cb8ce89f7a3744f4da9 (patch) | |
tree | a64de699956ee69b31e4d705660a177f9e3edf12 /OpenSim/Region/ClientStack/LindenUDP | |
parent | Add the RegionLoaded(Scene) API to the new region module interface to allow (diff) | |
download | opensim-SC_OLD-a0417f57913735a032270cb8ce89f7a3744f4da9.zip opensim-SC_OLD-a0417f57913735a032270cb8ce89f7a3744f4da9.tar.gz opensim-SC_OLD-a0417f57913735a032270cb8ce89f7a3744f4da9.tar.bz2 opensim-SC_OLD-a0417f57913735a032270cb8ce89f7a3744f4da9.tar.xz |
Thank you, Fly-Man, for a patch that adds the stub to handle the
avatar interests update.
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index 2c8474c..7ddbfbf 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -309,6 +309,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
309 | 309 | ||
310 | private MuteListRequest handlerMuteListRequest; | 310 | private MuteListRequest handlerMuteListRequest; |
311 | 311 | ||
312 | private AvatarInterestUpdate handlerAvatarInterestUpdate; | ||
313 | |||
312 | private readonly IGroupsModule m_GroupsModule; | 314 | private readonly IGroupsModule m_GroupsModule; |
313 | 315 | ||
314 | //private TerrainUnacked handlerUnackedTerrain = null; | 316 | //private TerrainUnacked handlerUnackedTerrain = null; |
@@ -1105,6 +1107,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1105 | 1107 | ||
1106 | public event MuteListRequest OnMuteListRequest; | 1108 | public event MuteListRequest OnMuteListRequest; |
1107 | 1109 | ||
1110 | public event AvatarInterestUpdate OnAvatarInterestUpdate; | ||
1111 | |||
1108 | public void ActivateGesture(UUID assetId, UUID gestureId) | 1112 | public void ActivateGesture(UUID assetId, UUID gestureId) |
1109 | { | 1113 | { |
1110 | } | 1114 | } |
@@ -9106,6 +9110,13 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
9106 | avatarNotesUpdate.Data.TargetID, | 9110 | avatarNotesUpdate.Data.TargetID, |
9107 | Utils.BytesToString(avatarNotesUpdate.Data.Notes)); | 9111 | Utils.BytesToString(avatarNotesUpdate.Data.Notes)); |
9108 | break; | 9112 | break; |
9113 | |||
9114 | case PacketType.AvatarInterestsUpdate: | ||
9115 | AvatarInterestsUpdatePacket avatarInterestUpdate = | ||
9116 | (AvatarInterestsUpdatePacket)Pack; | ||
9117 | |||
9118 | break; | ||
9119 | |||
9109 | default: | 9120 | default: |
9110 | m_log.Warn("[CLIENT]: unhandled packet " + Pack); | 9121 | m_log.Warn("[CLIENT]: unhandled packet " + Pack); |
9111 | break; | 9122 | break; |