A few updates necessary for load balancer.

- handle GetUser request for nonexistent user gracefully
- include throttle levels in ClientInfo
- code to save/restore throttles in client stack
- only update/send updates to active clients
- make animation classes serializable
This commit is contained in:
Mike Mazur
2009-02-25 00:32:26 +00:00
parent d81fb565c1
commit bdf95e54a2
9 changed files with 98 additions and 49 deletions

View File

@@ -45,5 +45,14 @@ namespace OpenSim.Framework
public uint sequence;
public byte[] usecircuit;
public EndPoint userEP;
public int resendThrottle;
public int landThrottle;
public int windThrottle;
public int cloudThrottle;
public int taskThrottle;
public int assetThrottle;
public int textureThrottle;
public int totalThrottle;
}
}
}