diff options
author | Diva Canto | 2010-02-28 12:07:38 -0800 |
---|---|---|
committer | Diva Canto | 2010-02-28 12:07:38 -0800 |
commit | 5c5966545d14de43500b95109e8ce81058ebe2c3 (patch) | |
tree | 732f9f47668141b177a8f6e9e6e6d64aa0ee722d /OpenSim/Framework | |
parent | Friends connectors finished. Status notification working across the board. On... (diff) | |
download | opensim-SC_OLD-5c5966545d14de43500b95109e8ce81058ebe2c3.zip opensim-SC_OLD-5c5966545d14de43500b95109e8ce81058ebe2c3.tar.gz opensim-SC_OLD-5c5966545d14de43500b95109e8ce81058ebe2c3.tar.bz2 opensim-SC_OLD-5c5966545d14de43500b95109e8ce81058ebe2c3.tar.xz |
Initial Online friends notification seems to be working reliably now. All this needs more testing, but everything is there.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 10a091a..4003b7e 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -93,6 +93,8 @@ namespace OpenSim.Framework | |||
93 | 93 | ||
94 | public delegate void SetAlwaysRun(IClientAPI remoteClient, bool SetAlwaysRun); | 94 | public delegate void SetAlwaysRun(IClientAPI remoteClient, bool SetAlwaysRun); |
95 | 95 | ||
96 | public delegate void GenericCall1(IClientAPI remoteClient); | ||
97 | |||
96 | public delegate void GenericCall2(); | 98 | public delegate void GenericCall2(); |
97 | 99 | ||
98 | // really don't want to be passing packets in these events, so this is very temporary. | 100 | // really don't want to be passing packets in these events, so this is very temporary. |
@@ -878,7 +880,7 @@ namespace OpenSim.Framework | |||
878 | event DeRezObject OnDeRezObject; | 880 | event DeRezObject OnDeRezObject; |
879 | event Action<IClientAPI> OnRegionHandShakeReply; | 881 | event Action<IClientAPI> OnRegionHandShakeReply; |
880 | event GenericCall2 OnRequestWearables; | 882 | event GenericCall2 OnRequestWearables; |
881 | event GenericCall2 OnCompleteMovementToRegion; | 883 | event GenericCall1 OnCompleteMovementToRegion; |
882 | event UpdateAgent OnAgentUpdate; | 884 | event UpdateAgent OnAgentUpdate; |
883 | event AgentRequestSit OnAgentRequestSit; | 885 | event AgentRequestSit OnAgentRequestSit; |
884 | event AgentSit OnAgentSit; | 886 | event AgentSit OnAgentSit; |