diff options
author | Adam Frisby | 2008-05-02 16:40:17 +0000 |
---|---|---|
committer | Adam Frisby | 2008-05-02 16:40:17 +0000 |
commit | c6236b5cf3191225f53930736a1b9fca8d012deb (patch) | |
tree | 70532cad92c81b376638129f8d5ec2f0bc6a4bbf /OpenSim/Framework/IClientAPI.cs | |
parent | From: Kurt Taylor <krtaylor@us.ibm.com> (diff) | |
download | opensim-SC_OLD-c6236b5cf3191225f53930736a1b9fca8d012deb.zip opensim-SC_OLD-c6236b5cf3191225f53930736a1b9fca8d012deb.tar.gz opensim-SC_OLD-c6236b5cf3191225f53930736a1b9fca8d012deb.tar.bz2 opensim-SC_OLD-c6236b5cf3191225f53930736a1b9fca8d012deb.tar.xz |
* 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.
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 9bcd65f..8f41728 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -480,6 +480,12 @@ namespace OpenSim.Framework | |||
480 | /// <param name="packType"></param> | 480 | /// <param name="packType"></param> |
481 | string Name { get; } | 481 | string Name { get; } |
482 | 482 | ||
483 | bool IsActive | ||
484 | { | ||
485 | get; | ||
486 | set; | ||
487 | } | ||
488 | |||
483 | uint CircuitCode { get; } | 489 | uint CircuitCode { get; } |
484 | event ImprovedInstantMessage OnInstantMessage; | 490 | event ImprovedInstantMessage OnInstantMessage; |
485 | event ChatFromViewer OnChatFromViewer; | 491 | event ChatFromViewer OnChatFromViewer; |