aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack
diff options
context:
space:
mode:
authorAdam Frisby2009-01-04 19:39:17 +0000
committerAdam Frisby2009-01-04 19:39:17 +0000
commit00a0f4a2863fd6147cf02d2ca44533f901707c76 (patch)
tree6ad996a4d4455dea7fc1a0d1ca27f33c47a55486 /OpenSim/Region/ClientStack
parentsync with primmesher r26 on forge (diff)
downloadopensim-SC_OLD-00a0f4a2863fd6147cf02d2ca44533f901707c76.zip
opensim-SC_OLD-00a0f4a2863fd6147cf02d2ca44533f901707c76.tar.gz
opensim-SC_OLD-00a0f4a2863fd6147cf02d2ca44533f901707c76.tar.bz2
opensim-SC_OLD-00a0f4a2863fd6147cf02d2ca44533f901707c76.tar.xz
* Added some information to HandleGenericMessage to indicate that it's not the packet that isnt being processed, but instead the method-type.
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs10
1 files changed, 3 insertions, 7 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index 9c0a9cf..55b77d4 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -3695,11 +3695,13 @@ namespace OpenSim.Region.ClientStack.LindenUDP
3695 handlerGenericMessage(sender, method, msg); 3695 handlerGenericMessage(sender, method, msg);
3696 return true; 3696 return true;
3697 } 3697 }
3698 catch 3698 catch(Exception e)
3699 { 3699 {
3700 m_log.Error("[GENERICMESSAGE] " + e);
3700 } 3701 }
3701 } 3702 }
3702 } 3703 }
3704 m_log.Error("[GENERICMESSAGE] Not handling GenericMessage with method-type of: " + method);
3703 return false; 3705 return false;
3704 } 3706 }
3705 3707
@@ -4195,12 +4197,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP
4195 { 4197 {
4196 #region Scene/Avatar 4198 #region Scene/Avatar
4197 4199
4198 // case PacketType.GenericMessage:
4199 // GenericMessagePacket gmpack = (GenericMessagePacket)Pack;
4200
4201 // DecipherGenericMessage(Utils.BytesToString(gmpack.MethodData.Method), gmpack.MethodData.Invoice, gmpack.ParamList);
4202
4203 // break;
4204 case PacketType.AvatarPropertiesRequest: 4200 case PacketType.AvatarPropertiesRequest:
4205 AvatarPropertiesRequestPacket avatarProperties = (AvatarPropertiesRequestPacket)Pack; 4201 AvatarPropertiesRequestPacket avatarProperties = (AvatarPropertiesRequestPacket)Pack;
4206 4202