diff options
author | Diva Canto | 2011-06-10 21:07:50 -0700 |
---|---|---|
committer | Diva Canto | 2011-06-10 21:07:50 -0700 |
commit | 5f311c91c781d09e266fb76cb7747550fe2afc16 (patch) | |
tree | 3959465fcf29fb9fb61df3ee1c328237c12dd876 /OpenSim/Region | |
parent | Decreased timeout of HG StatusNotification to 4secs. http://opensimulator.org... (diff) | |
download | opensim-SC_OLD-5f311c91c781d09e266fb76cb7747550fe2afc16.zip opensim-SC_OLD-5f311c91c781d09e266fb76cb7747550fe2afc16.tar.gz opensim-SC_OLD-5f311c91c781d09e266fb76cb7747550fe2afc16.tar.bz2 opensim-SC_OLD-5f311c91c781d09e266fb76cb7747550fe2afc16.tar.xz |
More tweaking on the UserAgentServiceConnector: add constructor that does not do DNS lookup, and use that for friends notification.
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs b/OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs index b9d6719..b8342ef 100644 --- a/OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs | |||
@@ -278,7 +278,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Friends | |||
278 | List<string> ids = new List<string>(); | 278 | List<string> ids = new List<string>(); |
279 | foreach (FriendInfo f in kvp.Value) | 279 | foreach (FriendInfo f in kvp.Value) |
280 | ids.Add(f.Friend); | 280 | ids.Add(f.Friend); |
281 | UserAgentServiceConnector uConn = new UserAgentServiceConnector(kvp.Key); | 281 | UserAgentServiceConnector uConn = new UserAgentServiceConnector(kvp.Key, false); |
282 | List<UUID> friendsOnline = uConn.StatusNotification(ids, userID, online); | 282 | List<UUID> friendsOnline = uConn.StatusNotification(ids, userID, online); |
283 | // need to debug this here | 283 | // need to debug this here |
284 | if (online) | 284 | if (online) |