diff options
author | Diva Canto | 2010-01-29 18:59:41 -0800 |
---|---|---|
committer | Diva Canto | 2010-01-29 18:59:41 -0800 |
commit | 5001f61c08fea2ebfcb2590be69073d04d129d70 (patch) | |
tree | 08a0470b0b566f814209bfb803fbcc0959333bcd /OpenSim/Client/VWoHTTP/ClientStack | |
parent | Works for grid login. (diff) | |
download | opensim-SC_OLD-5001f61c08fea2ebfcb2590be69073d04d129d70.zip opensim-SC_OLD-5001f61c08fea2ebfcb2590be69073d04d129d70.tar.gz opensim-SC_OLD-5001f61c08fea2ebfcb2590be69073d04d129d70.tar.bz2 opensim-SC_OLD-5001f61c08fea2ebfcb2590be69073d04d129d70.tar.xz |
* HGGridConnector is no longer necessary.
* Handle logout properly. This needed an addition to IClientAPI, because of how the logout packet is currently being handled -- the agent is being removed from the scene before the different event handlers are executed, which is broken.
Diffstat (limited to 'OpenSim/Client/VWoHTTP/ClientStack')
-rw-r--r-- | OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs index 6a119bd..613da56 100644 --- a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs +++ b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs | |||
@@ -196,7 +196,11 @@ namespace OpenSim.Client.VWoHTTP.ClientStack | |||
196 | get { throw new System.NotImplementedException(); } | 196 | get { throw new System.NotImplementedException(); } |
197 | set { throw new System.NotImplementedException(); } | 197 | set { throw new System.NotImplementedException(); } |
198 | } | 198 | } |
199 | 199 | public bool IsLoggingOut | |
200 | { | ||
201 | get { throw new System.NotImplementedException(); } | ||
202 | set { throw new System.NotImplementedException(); } | ||
203 | } | ||
200 | public bool SendLogoutPacketWhenClosing | 204 | public bool SendLogoutPacketWhenClosing |
201 | { | 205 | { |
202 | set { throw new System.NotImplementedException(); } | 206 | set { throw new System.NotImplementedException(); } |
@@ -1194,15 +1198,15 @@ namespace OpenSim.Client.VWoHTTP.ClientStack | |||
1194 | } | 1198 | } |
1195 | 1199 | ||
1196 | public void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID,int amt) | 1200 | public void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID,int amt) |
1197 | { | 1201 | { |
1198 | } | 1202 | } |
1199 | 1203 | ||
1200 | public void SendGroupVoteHistory(UUID groupID, UUID transactionID, GroupVoteHistory[] Votes) | 1204 | public void SendGroupVoteHistory(UUID groupID, UUID transactionID, GroupVoteHistory[] Votes) |
1201 | { | 1205 | { |
1202 | } | 1206 | } |
1203 | 1207 | ||
1204 | public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals) | 1208 | public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals) |
1205 | { | 1209 | { |
1206 | } | 1210 | } |
1207 | } | 1211 | } |
1208 | } | 1212 | } |