Minor formatting / svn properties cleanup.
parent
dd6e6e7bdf
commit
d2b1a8aa1e
|
@ -45,13 +45,13 @@ namespace OpenSim.Grid.GridServer
|
||||||
{
|
{
|
||||||
protected GridConfig m_config;
|
protected GridConfig m_config;
|
||||||
protected GridManager m_gridManager;
|
protected GridManager m_gridManager;
|
||||||
protected BaseHttpServer httpServer;
|
protected BaseHttpServer httpServer;
|
||||||
protected List<IGridPlugin> m_plugins = new List<IGridPlugin>();
|
protected List<IGridPlugin> m_plugins = new List<IGridPlugin>();
|
||||||
|
|
||||||
public BaseHttpServer HttpServer
|
public BaseHttpServer HttpServer
|
||||||
{
|
{
|
||||||
get { return httpServer; }
|
get { return httpServer; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Work()
|
public void Work()
|
||||||
{
|
{
|
||||||
|
@ -63,7 +63,7 @@ namespace OpenSim.Grid.GridServer
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public GridServerBase( )
|
public GridServerBase()
|
||||||
{
|
{
|
||||||
m_console = new ConsoleBase("OpenGrid", this);
|
m_console = new ConsoleBase("OpenGrid", this);
|
||||||
MainConsole.Instance = m_console;
|
MainConsole.Instance = m_console;
|
||||||
|
@ -137,7 +137,6 @@ namespace OpenSim.Grid.GridServer
|
||||||
m_plugins.Add(plugin);
|
m_plugins.Add(plugin);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
protected virtual void SetupGridManager()
|
protected virtual void SetupGridManager()
|
||||||
{
|
{
|
||||||
|
|
|
@ -2689,7 +2689,6 @@ namespace OpenSim.Region.ClientStack
|
||||||
{
|
{
|
||||||
AddAck(Pack); // this adds the need to ack this packet later
|
AddAck(Pack); // this adds the need to ack this packet later
|
||||||
|
|
||||||
|
|
||||||
if (Pack.Type != PacketType.PacketAck && Pack.Type != PacketType.LogoutRequest)
|
if (Pack.Type != PacketType.PacketAck && Pack.Type != PacketType.LogoutRequest)
|
||||||
{
|
{
|
||||||
SetPendingAcks(ref Pack);
|
SetPendingAcks(ref Pack);
|
||||||
|
@ -2727,7 +2726,7 @@ namespace OpenSim.Region.ClientStack
|
||||||
|
|
||||||
public virtual void InPacket(Packet NewPack)
|
public virtual void InPacket(Packet NewPack)
|
||||||
{
|
{
|
||||||
if(!m_packetProcessingEnabled && NewPack.Type != PacketType.LogoutRequest)
|
if (!m_packetProcessingEnabled && NewPack.Type != PacketType.LogoutRequest)
|
||||||
{
|
{
|
||||||
PacketPool.Instance.ReturnPacket(NewPack);
|
PacketPool.Instance.ReturnPacket(NewPack);
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -281,22 +281,22 @@ namespace OpenSim.Region.Environment.Scenes
|
||||||
public void SetDebugPacketOnCurrentScene(int newDebug)
|
public void SetDebugPacketOnCurrentScene(int newDebug)
|
||||||
{
|
{
|
||||||
ForEachCurrentScene(delegate(Scene scene)
|
ForEachCurrentScene(delegate(Scene scene)
|
||||||
{
|
{
|
||||||
List<ScenePresence> scenePresences = scene.GetScenePresences();
|
List<ScenePresence> scenePresences = scene.GetScenePresences();
|
||||||
|
|
||||||
foreach (ScenePresence scenePresence in scenePresences)
|
foreach (ScenePresence scenePresence in scenePresences)
|
||||||
{
|
{
|
||||||
if (!scenePresence.IsChildAgent)
|
if (!scenePresence.IsChildAgent)
|
||||||
{
|
{
|
||||||
m_log.ErrorFormat("Packet debug for {0} {1} set to {2}",
|
m_log.ErrorFormat("Packet debug for {0} {1} set to {2}",
|
||||||
scenePresence.Firstname,
|
scenePresence.Firstname,
|
||||||
scenePresence.Lastname,
|
scenePresence.Lastname,
|
||||||
newDebug);
|
newDebug);
|
||||||
|
|
||||||
scenePresence.ControllingClient.SetDebug(newDebug);
|
scenePresence.ControllingClient.SetDebug(newDebug);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<ScenePresence> GetCurrentSceneAvatars()
|
public List<ScenePresence> GetCurrentSceneAvatars()
|
||||||
|
|
Loading…
Reference in New Issue