diff options
Diffstat (limited to 'OpenSim/Region/Environment')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index ab94842..f7e3543 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs | |||
@@ -1084,10 +1084,12 @@ namespace OpenSim.Region.Environment.Scenes | |||
1084 | /// <param name="endPoint"></param> | 1084 | /// <param name="endPoint"></param> |
1085 | private void InformClientOfNeighbourAsync(IClientAPI remoteClient, AgentCircuitData a, ulong regionHandle, IPEndPoint endPoint) | 1085 | private void InformClientOfNeighbourAsync(IClientAPI remoteClient, AgentCircuitData a, ulong regionHandle, IPEndPoint endPoint) |
1086 | { | 1086 | { |
1087 | MainLog.Instance.Notice("INTERGRID", "Starting to inform client about neighbours"); | ||
1087 | bool regionAccepted = commsManager.InterRegion.InformRegionOfChildAgent(regionHandle, a); | 1088 | bool regionAccepted = commsManager.InterRegion.InformRegionOfChildAgent(regionHandle, a); |
1088 | 1089 | ||
1089 | if (regionAccepted) | 1090 | if (regionAccepted) |
1090 | remoteClient.InformClientOfNeighbour(regionHandle, endPoint); | 1091 | remoteClient.InformClientOfNeighbour(regionHandle, endPoint); |
1092 | MainLog.Instance.Notice("INTERGRID", "Completed inform client about neighbours"); | ||
1091 | } | 1093 | } |
1092 | 1094 | ||
1093 | /// <summary> | 1095 | /// <summary> |
@@ -1109,7 +1111,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
1109 | InformClientOfNeighbourDelegate d = InformClientOfNeighbourAsync; | 1111 | InformClientOfNeighbourDelegate d = InformClientOfNeighbourAsync; |
1110 | d.BeginInvoke(remoteClient, agent, neighbours[i].RegionHandle, neighbours[i].ExternalEndPoint, | 1112 | d.BeginInvoke(remoteClient, agent, neighbours[i].RegionHandle, neighbours[i].ExternalEndPoint, |
1111 | InformClientOfNeighbourCompleted, | 1113 | InformClientOfNeighbourCompleted, |
1112 | null); | 1114 | d); |
1113 | 1115 | ||
1114 | } | 1116 | } |
1115 | } | 1117 | } |