diff options
author | Teravus Ovares | 2008-09-06 07:52:41 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-09-06 07:52:41 +0000 |
commit | 7d89e122930be39e84a6d174548fa2d12ac0484a (patch) | |
tree | e5aa5752f988a9aba2a969f49e5e208985eda80c /OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs | |
parent | * minor: speculatively try a change to bamboo.build to see if this generates ... (diff) | |
download | opensim-SC_OLD-7d89e122930be39e84a6d174548fa2d12ac0484a.zip opensim-SC_OLD-7d89e122930be39e84a6d174548fa2d12ac0484a.tar.gz opensim-SC_OLD-7d89e122930be39e84a6d174548fa2d12ac0484a.tar.bz2 opensim-SC_OLD-7d89e122930be39e84a6d174548fa2d12ac0484a.tar.xz |
* This is the fabled LibOMV update with all of the libOMV types from JHurliman
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle.
* This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big!
* Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs b/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs index 551e7ab..eddee10 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs | |||
@@ -33,8 +33,8 @@ using System.Net.Sockets; | |||
33 | using System.Threading; | 33 | using System.Threading; |
34 | using System.Timers; | 34 | using System.Timers; |
35 | using System.Reflection; | 35 | using System.Reflection; |
36 | using libsecondlife; | 36 | using OpenMetaverse; |
37 | using libsecondlife.Packets; | 37 | using OpenMetaverse.Packets; |
38 | using Timer = System.Timers.Timer; | 38 | using Timer = System.Timers.Timer; |
39 | using OpenSim.Framework; | 39 | using OpenSim.Framework; |
40 | using OpenSim.Region.ClientStack.LindenUDP; | 40 | using OpenSim.Region.ClientStack.LindenUDP; |
@@ -44,7 +44,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
44 | { | 44 | { |
45 | public delegate void PacketStats(int inPackets, int outPackets, int unAckedBytes); | 45 | public delegate void PacketStats(int inPackets, int outPackets, int unAckedBytes); |
46 | public delegate void PacketDrop(Packet pack, Object id); | 46 | public delegate void PacketDrop(Packet pack, Object id); |
47 | public delegate bool SynchronizeClientHandler(IScene scene, Packet packet, LLUUID agentID, ThrottleOutPacketType throttlePacketType); | 47 | public delegate bool SynchronizeClientHandler(IScene scene, Packet packet, UUID agentID, ThrottleOutPacketType throttlePacketType); |
48 | 48 | ||
49 | public interface IPacketHandler | 49 | public interface IPacketHandler |
50 | { | 50 | { |
@@ -259,9 +259,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
259 | // acks being appended to the payload, just don't send | 259 | // acks being appended to the payload, just don't send |
260 | // any with them until libsl is fixed. | 260 | // any with them until libsl is fixed. |
261 | // | 261 | // |
262 | if (packet is libsecondlife.Packets.ViewerEffectPacket) | 262 | if (packet is OpenMetaverse.Packets.ViewerEffectPacket) |
263 | return; | 263 | return; |
264 | if (packet is libsecondlife.Packets.SimStatsPacket) | 264 | if (packet is OpenMetaverse.Packets.SimStatsPacket) |
265 | return; | 265 | return; |
266 | 266 | ||
267 | // Add acks to outgoing packets | 267 | // Add acks to outgoing packets |