aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/CommunicationsManager.cs
diff options
context:
space:
mode:
authorDiva Canto2010-01-10 16:20:59 -0800
committerDiva Canto2010-01-10 16:20:59 -0800
commit53e83e5dbb3590cb9c858aa301665357d1511b30 (patch)
tree732c828f49c3c54dc49bcd6eec86153ab76bc8ae /OpenSim/Framework/Communications/CommunicationsManager.cs
parentSome typos fixed related to master avie removal (diff)
downloadopensim-SC_OLD-53e83e5dbb3590cb9c858aa301665357d1511b30.zip
opensim-SC_OLD-53e83e5dbb3590cb9c858aa301665357d1511b30.tar.gz
opensim-SC_OLD-53e83e5dbb3590cb9c858aa301665357d1511b30.tar.bz2
opensim-SC_OLD-53e83e5dbb3590cb9c858aa301665357d1511b30.tar.xz
* Starting to clean the house...
* Fixed circular dependency
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Communications/CommunicationsManager.cs37
1 files changed, 0 insertions, 37 deletions
diff --git a/OpenSim/Framework/Communications/CommunicationsManager.cs b/OpenSim/Framework/Communications/CommunicationsManager.cs
index d215340..4dff71f 100644
--- a/OpenSim/Framework/Communications/CommunicationsManager.cs
+++ b/OpenSim/Framework/Communications/CommunicationsManager.cs
@@ -53,12 +53,6 @@ namespace OpenSim.Framework.Communications
53 } 53 }
54 protected IUserService m_userService; 54 protected IUserService m_userService;
55 55
56 public UserProfileCacheService UserProfileCacheService
57 {
58 get { return m_userProfileCacheService; }
59 }
60 protected UserProfileCacheService m_userProfileCacheService;
61
62 public IAvatarService AvatarService 56 public IAvatarService AvatarService
63 { 57 {
64 get { return m_avatarService; } 58 get { return m_avatarService; }
@@ -94,39 +88,8 @@ namespace OpenSim.Framework.Communications
94 LibraryRootFolder libraryRootFolder) 88 LibraryRootFolder libraryRootFolder)
95 { 89 {
96 m_networkServersInfo = serversInfo; 90 m_networkServersInfo = serversInfo;
97 m_userProfileCacheService = new UserProfileCacheService(this, libraryRootFolder);
98 }
99
100
101
102 /// <summary>
103 /// Logs off a user and does the appropriate communications
104 /// </summary>
105 /// <param name="userid"></param>
106 /// <param name="regionid"></param>
107 /// <param name="regionhandle"></param>
108 /// <param name="position"></param>
109 /// <param name="lookat"></param>
110 public void LogOffUser(UUID userid, UUID regionid, ulong regionhandle, Vector3 position, Vector3 lookat)
111 {
112 m_userService.LogOffUser(userid, regionid, regionhandle, position, lookat);
113 }
114
115 /// <summary>
116 /// Logs off a user and does the appropriate communications (deprecated as of 2008-08-27)
117 /// </summary>
118 /// <param name="userid"></param>
119 /// <param name="regionid"></param>
120 /// <param name="regionhandle"></param>
121 /// <param name="posx"></param>
122 /// <param name="posy"></param>
123 /// <param name="posz"></param>
124 public void LogOffUser(UUID userid, UUID regionid, ulong regionhandle, float posx, float posy, float posz)
125 {
126 m_userService.LogOffUser(userid, regionid, regionhandle, posx, posy, posz);
127 } 91 }
128 92
129
130 #region Packet Handlers 93 #region Packet Handlers
131 94
132 public void UpdateAvatarPropertiesRequest(IClientAPI remote_client, UserProfileData UserProfile) 95 public void UpdateAvatarPropertiesRequest(IClientAPI remote_client, UserProfileData UserProfile)