diff options
author | Brian McBee | 2007-11-25 21:21:44 +0000 |
---|---|---|
committer | Brian McBee | 2007-11-25 21:21:44 +0000 |
commit | 35472b36663fba7528358daa65e029d41ecde206 (patch) | |
tree | da3918b4217e738734f09445234e52d48da6f034 /OpenSim/Region | |
parent | Rez new prims ON the ground, not halfway buried. Mantis 33. (diff) | |
download | opensim-SC_OLD-35472b36663fba7528358daa65e029d41ecde206.zip opensim-SC_OLD-35472b36663fba7528358daa65e029d41ecde206.tar.gz opensim-SC_OLD-35472b36663fba7528358daa65e029d41ecde206.tar.bz2 opensim-SC_OLD-35472b36663fba7528358daa65e029d41ecde206.tar.xz |
Added new configuration item to User Server: X and Y of region to send user to if their logon region is down. Known good region, sort of.
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/ClientStack/ClientView.PacketQueue.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/ClientView.PacketQueue.cs b/OpenSim/Region/ClientStack/ClientView.PacketQueue.cs index 1904bfa..4ca7bd9 100644 --- a/OpenSim/Region/ClientStack/ClientView.PacketQueue.cs +++ b/OpenSim/Region/ClientStack/ClientView.PacketQueue.cs | |||
@@ -166,11 +166,12 @@ namespace OpenSim.Region.ClientStack | |||
166 | //userEP); | 166 | //userEP); |
167 | } | 167 | } |
168 | } | 168 | } |
169 | catch (Exception) | 169 | catch (Exception e) |
170 | { | 170 | { |
171 | MainLog.Instance.Warn("client", | 171 | MainLog.Instance.Warn("client", |
172 | "ClientView.PacketQueue.cs:ProcessOutPacket() - WARNING: Socket exception occurred on connection " + | 172 | "ClientView.PacketQueue.cs:ProcessOutPacket() - WARNING: Socket exception occurred on connection " + |
173 | userEP.ToString() + " - killing thread"); | 173 | userEP.ToString() + " - killing thread"); |
174 | MainLog.Instance.Error(e.ToString()); | ||
174 | KillThread(); | 175 | KillThread(); |
175 | } | 176 | } |
176 | } | 177 | } |