diff options
author | MW | 2007-05-31 15:31:31 +0000 |
---|---|---|
committer | MW | 2007-05-31 15:31:31 +0000 |
commit | 564a97b508fd23601cd41075aa6a1f7de0800b41 (patch) | |
tree | e2cd67317ac84a1468b3a425b011e8df7b7b7d5b /Common/OpenSim.Framework/RegionCommsHostBase.cs | |
parent | More work on OpenGrid.Framework.Communications (diff) | |
download | opensim-SC-564a97b508fd23601cd41075aa6a1f7de0800b41.zip opensim-SC-564a97b508fd23601cd41075aa6a1f7de0800b41.tar.gz opensim-SC-564a97b508fd23601cd41075aa6a1f7de0800b41.tar.bz2 opensim-SC-564a97b508fd23601cd41075aa6a1f7de0800b41.tar.xz |
Implementing a test Communications manager to test some of the interfaces (likely this test version will morph into the sandbox version)
Diffstat (limited to 'Common/OpenSim.Framework/RegionCommsHostBase.cs')
-rw-r--r-- | Common/OpenSim.Framework/RegionCommsHostBase.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Common/OpenSim.Framework/RegionCommsHostBase.cs b/Common/OpenSim.Framework/RegionCommsHostBase.cs index 782755e..41babe7 100644 --- a/Common/OpenSim.Framework/RegionCommsHostBase.cs +++ b/Common/OpenSim.Framework/RegionCommsHostBase.cs | |||
@@ -18,11 +18,11 @@ namespace OpenSim.Framework | |||
18 | /// </summary> | 18 | /// </summary> |
19 | /// <param name="agent"></param> | 19 | /// <param name="agent"></param> |
20 | /// <returns></returns> | 20 | /// <returns></returns> |
21 | public virtual bool TriggerExpectUser(AgentCircuitData agent) | 21 | public virtual bool TriggerExpectUser(ulong regionHandle, AgentCircuitData agent) |
22 | { | 22 | { |
23 | if(OnExpectUser != null) | 23 | if(OnExpectUser != null) |
24 | { | 24 | { |
25 | OnExpectUser(agent); | 25 | OnExpectUser(regionHandle, agent); |
26 | return true; | 26 | return true; |
27 | } | 27 | } |
28 | 28 | ||