diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/Communications/CommunicationsManager.cs (renamed from Common/OpenGrid.Framework.Communications/CommunicationsManager.cs) | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/Common/OpenGrid.Framework.Communications/CommunicationsManager.cs b/OpenSim/Framework/Communications/CommunicationsManager.cs index 8d8a647..b17b37b 100644 --- a/Common/OpenGrid.Framework.Communications/CommunicationsManager.cs +++ b/OpenSim/Framework/Communications/CommunicationsManager.cs | |||
@@ -30,11 +30,13 @@ using System.Collections; | |||
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.Text; | 31 | using System.Text; |
32 | using OpenSim.Framework; | 32 | using OpenSim.Framework; |
33 | using OpenSim.Framework.Data; | ||
33 | using OpenSim.Framework.Interfaces; | 34 | using OpenSim.Framework.Interfaces; |
34 | using OpenSim.Framework.Types; | 35 | using OpenSim.Framework.Types; |
35 | using libsecondlife; | 36 | using libsecondlife; |
37 | using libsecondlife.Packets; | ||
36 | 38 | ||
37 | namespace OpenGrid.Framework.Communications | 39 | namespace OpenSim.Framework.Communications |
38 | { | 40 | { |
39 | 41 | ||
40 | public class CommunicationsManager | 42 | public class CommunicationsManager |
@@ -43,9 +45,26 @@ namespace OpenGrid.Framework.Communications | |||
43 | public IGridServices GridServer; | 45 | public IGridServices GridServer; |
44 | public IInterRegionCommunications InterRegion; | 46 | public IInterRegionCommunications InterRegion; |
45 | 47 | ||
48 | public NetworkServersInfo ServersInfo; | ||
46 | public CommunicationsManager(NetworkServersInfo serversInfo) | 49 | public CommunicationsManager(NetworkServersInfo serversInfo) |
47 | { | 50 | { |
51 | ServersInfo = serversInfo; | ||
52 | } | ||
53 | |||
54 | #region Packet Handlers | ||
55 | public void HandleUUIDNameRequest(LLUUID uuid, IClientAPI remote_client) | ||
56 | { | ||
57 | UserProfileData profileData = this.UserServer.GetUserProfile(uuid); | ||
58 | if (profileData != null) | ||
59 | { | ||
60 | UUIDNameReplyPacket packet = new UUIDNameReplyPacket(); | ||
61 | packet.UUIDNameBlock[0].ID = profileData.UUID; | ||
62 | packet.UUIDNameBlock[0].FirstName = libsecondlife.Helpers.StringToField(profileData.username); | ||
63 | packet.UUIDNameBlock[0].LastName = libsecondlife.Helpers.StringToField(profileData.surname); | ||
64 | remote_client.OutPacket((Packet)packet); | ||
65 | } | ||
48 | 66 | ||
49 | } | 67 | } |
68 | #endregion | ||
50 | } | 69 | } |
51 | } | 70 | } |