Rename namespace to FunSL.

0.6.0-stable
Mike Mazur 2008-08-06 01:38:25 +00:00
parent 79c7e803e5
commit 548bcc265f
8 changed files with 14 additions and 14 deletions

View File

@ -27,7 +27,7 @@
using System.Net.Sockets;
namespace OpenSim.Region.ClientStack.LindenUDP
namespace OpenSim.Region.ClientStack.FunSLUDP
{
public interface LLClientStackNetworkHandler
{
@ -35,4 +35,4 @@ namespace OpenSim.Region.ClientStack.LindenUDP
void RemoveClientCircuit(uint circuitcode);
void RegisterPacketServer(LLPacketServer server);
}
}
}

View File

@ -40,11 +40,11 @@ using log4net;
using OpenSim.Framework;
using OpenSim.Framework.Communications.Cache;
using OpenSim.Framework.Statistics;
using OpenSim.Region.ClientStack.LindenUDP;
using OpenSim.Region.ClientStack.FunSLUDP;
using OpenSim.Region.Environment.Scenes;
using Timer = System.Timers.Timer;
namespace OpenSim.Region.ClientStack.LindenUDP
namespace OpenSim.Region.ClientStack.FunSLUDP
{
public delegate bool PacketMethod(IClientAPI simClient, Packet packet);

View File

@ -36,7 +36,7 @@ using libsecondlife.Packets;
using Timer = System.Timers.Timer;
using OpenSim.Framework;
namespace OpenSim.Region.ClientStack.LindenUDP
namespace OpenSim.Region.ClientStack.FunSLUDP
{
public delegate void PacketStats(int inPackets, int outPackets, int unAckedBytes);
public delegate void PacketDrop(Packet pack, Object id);

View File

@ -36,7 +36,7 @@ using OpenSim.Framework.Statistics;
using OpenSim.Framework.Statistics.Interfaces;
using Timer=System.Timers.Timer;
namespace OpenSim.Region.ClientStack.LindenUDP
namespace OpenSim.Region.ClientStack.FunSLUDP
{
public class LLPacketQueue : IPullStatsProvider
{

View File

@ -31,9 +31,9 @@ using libsecondlife;
using libsecondlife.Packets;
using OpenSim.Framework;
using OpenSim.Framework.Communications.Cache;
using OpenSim.Region.ClientStack.LindenUDP;
using OpenSim.Region.ClientStack.FunSLUDP;
namespace OpenSim.Region.ClientStack.LindenUDP
namespace OpenSim.Region.ClientStack.FunSLUDP
{
public class LLPacketServer
{
@ -147,4 +147,4 @@ namespace OpenSim.Region.ClientStack.LindenUDP
client.Close(false);
}
}
}
}

View File

@ -25,7 +25,7 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
namespace OpenSim.Region.ClientStack.LindenUDP
namespace OpenSim.Region.ClientStack.FunSLUDP
{
public class LLPacketThrottle
{
@ -90,4 +90,4 @@ namespace OpenSim.Region.ClientStack.LindenUDP
}
}
}
}
}

View File

@ -29,7 +29,7 @@ using System;
using libsecondlife.Packets;
using OpenSim.Framework;
namespace OpenSim.Region.ClientStack.LindenUDP
namespace OpenSim.Region.ClientStack.FunSLUDP
{
public class LLQueItem
{

View File

@ -35,10 +35,10 @@ using libsecondlife.Packets;
using log4net;
using OpenSim.Framework;
using OpenSim.Framework.Communications.Cache;
using OpenSim.Region.ClientStack.LindenUDP;
using OpenSim.Region.ClientStack.FunSLUDP;
using OpenSim.Region.Environment.Scenes;
namespace OpenSim.Region.ClientStack.LindenUDP
namespace OpenSim.Region.ClientStack.FunSLUDP
{
public class LLUDPServer : LLClientStackNetworkHandler, IClientNetworkServer
{