* More cleanup to acking and resending in libomv and Simian

* Fixed typo in Simian.ini that was disabling connection management
* Replaced several unnecessary foreach loops in Simian with dictionary lookups
* Simian now uses the last detected system IP address instead of the first

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2342 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2008-11-10 18:00:05 +00:00
parent c72d548ca5
commit 99b3b74cd6
10 changed files with 245 additions and 294 deletions

View File

@@ -17,9 +17,9 @@ namespace Simian.Extensions
{
this.server = server;
server.UDP.RegisterPacketCallback(PacketType.UseCircuitCode, new PacketCallback(UseCircuitCodeHandler));
server.UDP.RegisterPacketCallback(PacketType.StartPingCheck, new PacketCallback(StartPingCheckHandler));
server.UDP.RegisterPacketCallback(PacketType.LogoutRequest, new PacketCallback(LogoutRequestHandler));
server.UDP.RegisterPacketCallback(PacketType.UseCircuitCode, UseCircuitCodeHandler);
server.UDP.RegisterPacketCallback(PacketType.StartPingCheck, StartPingCheckHandler);
server.UDP.RegisterPacketCallback(PacketType.LogoutRequest, LogoutRequestHandler);
}
public void Stop()