* Refactored ClientView into LLClientView. Removed all direct references to UDPServer and replaced with IClientNetworkServer.

* This should, in theory, let us make new servers with different protocols very easily (rather than the challenge we would have faced before).
* BREAKS LoadBalancing module for the moment.
* Commit 1/3 - Please dont attempt to update to this revision until all 3 are in.
This commit is contained in:
Adam Frisby
2008-05-02 16:40:17 +00:00
parent 8cf2630dc9
commit c6236b5cf3
2 changed files with 17 additions and 5 deletions

View File

@@ -480,6 +480,12 @@ namespace OpenSim.Framework
/// <param name="packType"></param>
string Name { get; }
bool IsActive
{
get;
set;
}
uint CircuitCode { get; }
event ImprovedInstantMessage OnInstantMessage;
event ChatFromViewer OnChatFromViewer;