diff options
Diffstat (limited to 'OpenSim/Services')
4 files changed, 15 insertions, 27 deletions
diff --git a/OpenSim/Services/HypergridService/GatekeeperService.cs b/OpenSim/Services/HypergridService/GatekeeperService.cs index 149a0ab..47d22b9 100644 --- a/OpenSim/Services/HypergridService/GatekeeperService.cs +++ b/OpenSim/Services/HypergridService/GatekeeperService.cs | |||
@@ -370,8 +370,6 @@ namespace OpenSim.Services.HypergridService | |||
370 | return false; | 370 | return false; |
371 | } | 371 | } |
372 | } | 372 | } |
373 | |||
374 | return false; | ||
375 | } | 373 | } |
376 | 374 | ||
377 | // Check that the service token was generated for *this* grid. | 375 | // Check that the service token was generated for *this* grid. |
diff --git a/OpenSim/Services/HypergridService/HGFriendsService.cs b/OpenSim/Services/HypergridService/HGFriendsService.cs index 39524ab..98423d7 100644 --- a/OpenSim/Services/HypergridService/HGFriendsService.cs +++ b/OpenSim/Services/HypergridService/HGFriendsService.cs | |||
@@ -276,19 +276,19 @@ namespace OpenSim.Services.HypergridService | |||
276 | } | 276 | } |
277 | } | 277 | } |
278 | 278 | ||
279 | // Lastly, let's notify the rest who may be online somewhere else | 279 | // // Lastly, let's notify the rest who may be online somewhere else |
280 | foreach (string user in usersToBeNotified) | 280 | // foreach (string user in usersToBeNotified) |
281 | { | 281 | // { |
282 | UUID id = new UUID(user); | 282 | // UUID id = new UUID(user); |
283 | //m_UserAgentService.LocateUser(id); | 283 | // //m_UserAgentService.LocateUser(id); |
284 | //etc... | 284 | // //etc... |
285 | //if (m_TravelingAgents.ContainsKey(id) && m_TravelingAgents[id].GridExternalName != m_GridName) | 285 | // //if (m_TravelingAgents.ContainsKey(id) && m_TravelingAgents[id].GridExternalName != m_GridName) |
286 | //{ | 286 | // //{ |
287 | // string url = m_TravelingAgents[id].GridExternalName; | 287 | // // string url = m_TravelingAgents[id].GridExternalName; |
288 | // // forward | 288 | // // // forward |
289 | //} | 289 | // //} |
290 | //m_log.WarnFormat("[HGFRIENDS SERVICE]: User {0} is visiting another grid. HG Status notifications still not implemented.", user); | 290 | // //m_log.WarnFormat("[HGFRIENDS SERVICE]: User {0} is visiting another grid. HG Status notifications still not implemented.", user); |
291 | } | 291 | // } |
292 | 292 | ||
293 | // and finally, let's send the online friends | 293 | // and finally, let's send the online friends |
294 | if (online) | 294 | if (online) |
diff --git a/OpenSim/Services/HypergridService/HGSuitcaseInventoryService.cs b/OpenSim/Services/HypergridService/HGSuitcaseInventoryService.cs index 53fbea6..6e4b68c 100644 --- a/OpenSim/Services/HypergridService/HGSuitcaseInventoryService.cs +++ b/OpenSim/Services/HypergridService/HGSuitcaseInventoryService.cs | |||
@@ -57,7 +57,7 @@ namespace OpenSim.Services.HypergridService | |||
57 | private string m_HomeURL; | 57 | private string m_HomeURL; |
58 | private IUserAccountService m_UserAccountService; | 58 | private IUserAccountService m_UserAccountService; |
59 | 59 | ||
60 | private UserAccountCache m_Cache; | 60 | // private UserAccountCache m_Cache; |
61 | 61 | ||
62 | private ExpiringCache<UUID, List<XInventoryFolder>> m_SuitcaseTrees = new ExpiringCache<UUID, List<XInventoryFolder>>(); | 62 | private ExpiringCache<UUID, List<XInventoryFolder>> m_SuitcaseTrees = new ExpiringCache<UUID, List<XInventoryFolder>>(); |
63 | 63 | ||
@@ -92,7 +92,7 @@ namespace OpenSim.Services.HypergridService | |||
92 | // Preferred | 92 | // Preferred |
93 | m_HomeURL = invConfig.GetString("HomeURI", m_HomeURL); | 93 | m_HomeURL = invConfig.GetString("HomeURI", m_HomeURL); |
94 | 94 | ||
95 | m_Cache = UserAccountCache.CreateUserAccountCache(m_UserAccountService); | 95 | // m_Cache = UserAccountCache.CreateUserAccountCache(m_UserAccountService); |
96 | } | 96 | } |
97 | 97 | ||
98 | m_log.Debug("[HG SUITCASE INVENTORY SERVICE]: Starting..."); | 98 | m_log.Debug("[HG SUITCASE INVENTORY SERVICE]: Starting..."); |
diff --git a/OpenSim/Services/Interfaces/ISimulationService.cs b/OpenSim/Services/Interfaces/ISimulationService.cs index d9f242b..a963b8e 100644 --- a/OpenSim/Services/Interfaces/ISimulationService.cs +++ b/OpenSim/Services/Interfaces/ISimulationService.cs | |||
@@ -118,16 +118,6 @@ namespace OpenSim.Services.Interfaces | |||
118 | /// <returns></returns> | 118 | /// <returns></returns> |
119 | bool CreateObject(GridRegion destination, Vector3 newPosition, ISceneObject sog, bool isLocalCall); | 119 | bool CreateObject(GridRegion destination, Vector3 newPosition, ISceneObject sog, bool isLocalCall); |
120 | 120 | ||
121 | /// <summary> | ||
122 | /// Create an object from the user's inventory in the destination region. | ||
123 | /// This message is used primarily by clients. | ||
124 | /// </summary> | ||
125 | /// <param name="regionHandle"></param> | ||
126 | /// <param name="userID"></param> | ||
127 | /// <param name="itemID"></param> | ||
128 | /// <returns></returns> | ||
129 | bool CreateObject(GridRegion destination, UUID userID, UUID itemID); | ||
130 | |||
131 | #endregion Objects | 121 | #endregion Objects |
132 | 122 | ||
133 | } | 123 | } |