aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Addons
diff options
context:
space:
mode:
authorDiva Canto2015-01-09 08:31:56 -0800
committerDiva Canto2015-01-09 08:31:56 -0800
commite2dd15625f158c7f7d8f5ceec14f09e85dd8e2b6 (patch)
tree522ca8d3d1901ca7f594a7a5b6ec77d045d0ba21 /OpenSim/Addons
parentCommented out clear_registry_ because (1) it isn't clearing up anything anymo... (diff)
downloadopensim-SC_OLD-e2dd15625f158c7f7d8f5ceec14f09e85dd8e2b6.zip
opensim-SC_OLD-e2dd15625f158c7f7d8f5ceec14f09e85dd8e2b6.tar.gz
opensim-SC_OLD-e2dd15625f158c7f7d8f5ceec14f09e85dd8e2b6.tar.bz2
opensim-SC_OLD-e2dd15625f158c7f7d8f5ceec14f09e85dd8e2b6.tar.xz
Added GetDisplayNames capability. For now, we don't actually use display names, and this cap returns the regular name. But this moves the server side into the newer, preferred, protocol used by the viewer for fetching the names of agents in the scene given their UUIDs. (the old protocol is via UDP). This works fine in my limited tests, but could use further testing by others.
Diffstat (limited to 'OpenSim/Addons')
-rw-r--r--OpenSim/Addons/Groups/ForeignImporter.cs1
-rw-r--r--OpenSim/Addons/Groups/Local/GroupsServiceLocalConnectorModule.cs1
-rw-r--r--OpenSim/Addons/Groups/Remote/GroupsServiceRemoteConnectorModule.cs1
-rw-r--r--OpenSim/Addons/Groups/RemoteConnectorCacheWrapper.cs3
4 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Addons/Groups/ForeignImporter.cs b/OpenSim/Addons/Groups/ForeignImporter.cs
index 788d21d..055f76c 100644
--- a/OpenSim/Addons/Groups/ForeignImporter.cs
+++ b/OpenSim/Addons/Groups/ForeignImporter.cs
@@ -30,6 +30,7 @@ using System.Collections.Generic;
30 30
31using OpenSim.Framework; 31using OpenSim.Framework;
32using OpenSim.Region.Framework.Interfaces; 32using OpenSim.Region.Framework.Interfaces;
33using OpenSim.Services.Interfaces;
33 34
34namespace OpenSim.Groups 35namespace OpenSim.Groups
35{ 36{
diff --git a/OpenSim/Addons/Groups/Local/GroupsServiceLocalConnectorModule.cs b/OpenSim/Addons/Groups/Local/GroupsServiceLocalConnectorModule.cs
index 564dec4..8e30df5 100644
--- a/OpenSim/Addons/Groups/Local/GroupsServiceLocalConnectorModule.cs
+++ b/OpenSim/Addons/Groups/Local/GroupsServiceLocalConnectorModule.cs
@@ -34,6 +34,7 @@ using System.Text;
34using OpenSim.Framework; 34using OpenSim.Framework;
35using OpenSim.Region.Framework.Scenes; 35using OpenSim.Region.Framework.Scenes;
36using OpenSim.Region.Framework.Interfaces; 36using OpenSim.Region.Framework.Interfaces;
37using OpenSim.Services.Interfaces;
37 38
38using OpenMetaverse; 39using OpenMetaverse;
39using Mono.Addins; 40using Mono.Addins;
diff --git a/OpenSim/Addons/Groups/Remote/GroupsServiceRemoteConnectorModule.cs b/OpenSim/Addons/Groups/Remote/GroupsServiceRemoteConnectorModule.cs
index fddda22..d4739c6 100644
--- a/OpenSim/Addons/Groups/Remote/GroupsServiceRemoteConnectorModule.cs
+++ b/OpenSim/Addons/Groups/Remote/GroupsServiceRemoteConnectorModule.cs
@@ -36,6 +36,7 @@ using OpenSim.Framework;
36using OpenSim.Region.Framework.Scenes; 36using OpenSim.Region.Framework.Scenes;
37using OpenSim.Region.Framework.Interfaces; 37using OpenSim.Region.Framework.Interfaces;
38using OpenSim.Server.Base; 38using OpenSim.Server.Base;
39using OpenSim.Services.Interfaces;
39 40
40using OpenMetaverse; 41using OpenMetaverse;
41using Mono.Addins; 42using Mono.Addins;
diff --git a/OpenSim/Addons/Groups/RemoteConnectorCacheWrapper.cs b/OpenSim/Addons/Groups/RemoteConnectorCacheWrapper.cs
index 3ac74fc..f121737 100644
--- a/OpenSim/Addons/Groups/RemoteConnectorCacheWrapper.cs
+++ b/OpenSim/Addons/Groups/RemoteConnectorCacheWrapper.cs
@@ -31,7 +31,8 @@ using System.Reflection;
31using System.Threading; 31using System.Threading;
32 32
33using OpenSim.Framework; 33using OpenSim.Framework;
34using OpenSim.Region.Framework.Interfaces; 34//using OpenSim.Region.Framework.Interfaces;
35using OpenSim.Services.Interfaces;
35 36
36using OpenMetaverse; 37using OpenMetaverse;
37 38