Changed Simian ping timeout to 60 seconds instead of 10.

Removed unnecessary references to System.Threading.
Fixed missing i++ in UUIDNameReply response loop.
Added preliminary support for friendships (still needs to reference the proper calling card folder)

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2230 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
2008-09-21 18:10:17 +00:00
parent 8876dd9363
commit cbf46e562e
4 changed files with 117 additions and 4 deletions

View File

@@ -268,6 +268,7 @@ namespace Simian.Extensions
reply.UUIDNameBlock[i].ID = kvp.Key;
reply.UUIDNameBlock[i].FirstName = Utils.StringToBytes(kvp.Value.FirstName);
reply.UUIDNameBlock[i].LastName = Utils.StringToBytes(kvp.Value.LastName);
i++;
}
Server.UDP.SendPacket(agent.AgentID, reply, PacketCategory.Transaction);