aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs11
1 files changed, 7 insertions, 4 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index a1e270b..0acbd31 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -3688,12 +3688,15 @@ namespace OpenSim.Region.ClientStack.LindenUDP
3688 m_PacketHandler.PacketQueue.SetThrottleFromClient(throttles); 3688 m_PacketHandler.PacketQueue.SetThrottleFromClient(throttles);
3689 } 3689 }
3690 3690
3691 /// method gets called when a new packet has arrived from the UDP server. This happens after it's been decoded into a libsl object 3691 /// <summary>
3692 /// Method gets called when a new packet has arrived from the UDP
3693 /// server. This happens after it's been decoded into a libsl object.
3692 /// </summary> 3694 /// </summary>
3693 /// <param name="NewPack"></param> 3695 /// <param name="NewPack">object containing the packet.</param>
3694 public virtual void InPacket(Packet NewPack) 3696 public virtual void InPacket(object NewPack)
3695 { 3697 {
3696 m_PacketHandler.InPacket(NewPack); 3698 // Cast NewPack to Packet.
3699 m_PacketHandler.InPacket((Packet) NewPack);
3697 } 3700 }
3698 3701
3699 /// <summary> 3702 /// <summary>