aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-02-16 01:39:12 +0000
committerJustin Clark-Casey (justincc)2012-02-16 01:39:12 +0000
commit80ec2ac167713a4561938697a259e2a9681dadd4 (patch)
tree540e579a30640cc406b5e706b00444130883d4f1 /OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
parentAdd known identity informatio nto log message if an exception is thrown durin... (diff)
downloadopensim-SC_OLD-80ec2ac167713a4561938697a259e2a9681dadd4.zip
opensim-SC_OLD-80ec2ac167713a4561938697a259e2a9681dadd4.tar.gz
opensim-SC_OLD-80ec2ac167713a4561938697a259e2a9681dadd4.tar.bz2
opensim-SC_OLD-80ec2ac167713a4561938697a259e2a9681dadd4.tar.xz
Correct a bug introduced in 1f402fdf (Feb 7 2012) where the delete friends grid call would try and contact the wrong uri. Also fixes the build from df960d5
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
index 3b0fd8e..1e22fcc 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
@@ -903,8 +903,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
903 903
904 private void HandleUseCircuitCode(object o) 904 private void HandleUseCircuitCode(object o)
905 { 905 {
906 IPEndPoint remoteEndPoint; 906 IPEndPoint remoteEndPoint = null;
907 IClientAPI client; 907 IClientAPI client = null;
908 908
909 try 909 try
910 { 910 {
@@ -957,7 +957,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
957 "[LLUDPSERVER]: UseCircuitCode handling from endpoint {0}, client {1} {2} failed. Exception {3}{4}", 957 "[LLUDPSERVER]: UseCircuitCode handling from endpoint {0}, client {1} {2} failed. Exception {3}{4}",
958 remoteEndPoint != null ? remoteEndPoint.ToString() : "n/a", 958 remoteEndPoint != null ? remoteEndPoint.ToString() : "n/a",
959 client != null ? client.Name : "unknown", 959 client != null ? client.Name : "unknown",
960 client != null ? client.AgentId : "unknown", 960 client != null ? client.AgentId.ToString() : "unknown",
961 e.Message, 961 e.Message,
962 e.StackTrace); 962 e.StackTrace);
963 } 963 }