diff options
author | Charles Krinke | 2007-12-17 00:51:51 +0000 |
---|---|---|
committer | Charles Krinke | 2007-12-17 00:51:51 +0000 |
commit | 413fcc5709189d12fe8439ad94e79594a85343c6 (patch) | |
tree | 97a7eef1ba3507ff2d3cf5dfde5c13a87aa96831 /OpenSim/Region/ClientStack | |
parent | Clean up the Login message on UserServer console just (diff) | |
download | opensim-SC_OLD-413fcc5709189d12fe8439ad94e79594a85343c6.zip opensim-SC_OLD-413fcc5709189d12fe8439ad94e79594a85343c6.tar.gz opensim-SC_OLD-413fcc5709189d12fe8439ad94e79594a85343c6.tar.bz2 opensim-SC_OLD-413fcc5709189d12fe8439ad94e79594a85343c6.tar.xz |
The "Got a packet from an invalid client" has served its purpose
and is commented out, but is still there to help us if Mr.Murphy
decides to teach us (me) a lesson.
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/UDPServer.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/UDPServer.cs b/OpenSim/Region/ClientStack/UDPServer.cs index 8095646..2190fbf 100644 --- a/OpenSim/Region/ClientStack/UDPServer.cs +++ b/OpenSim/Region/ClientStack/UDPServer.cs | |||
@@ -156,7 +156,8 @@ namespace OpenSim.Region.ClientStack | |||
156 | else | 156 | else |
157 | { | 157 | { |
158 | // invalid client | 158 | // invalid client |
159 | m_log.Warn("client", "Got a packet from an invalid client - " + epSender.ToString()); | 159 | //CFK: This message seems to have served its usefullness as of 12-15 so I am commenting it out for now |
160 | //CFK: m_log.Warn("client", "Got a packet from an invalid client - " + epSender.ToString()); | ||
160 | } | 161 | } |
161 | 162 | ||
162 | Server.BeginReceiveFrom(RecvBuffer, 0, RecvBuffer.Length, SocketFlags.None, ref epSender, ReceivedData, null); | 163 | Server.BeginReceiveFrom(RecvBuffer, 0, RecvBuffer.Length, SocketFlags.None, ref epSender, ReceivedData, null); |