diff options
author | Mike Mazur | 2008-08-08 09:19:23 +0000 |
---|---|---|
committer | Mike Mazur | 2008-08-08 09:19:23 +0000 |
commit | 97d5b5a1eb159e539586ca8043304f8277b8d0e3 (patch) | |
tree | 4fc345454e3d77899fc88060c56005e535137daf /OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |
parent | Update svn properties, minor formatting cleanup. (diff) | |
download | opensim-SC_OLD-97d5b5a1eb159e539586ca8043304f8277b8d0e3.zip opensim-SC_OLD-97d5b5a1eb159e539586ca8043304f8277b8d0e3.tar.gz opensim-SC_OLD-97d5b5a1eb159e539586ca8043304f8277b8d0e3.tar.bz2 opensim-SC_OLD-97d5b5a1eb159e539586ca8043304f8277b8d0e3.tar.xz |
De-coupling the IClientAPI interface and ClientManager class from the
libsl/libomv Packet, as other client stacks could use other data types to pass
packets around. Starting with InPacket() here, more to come.
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 11 |
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> |