diff options
author | Teravus Ovares | 2008-08-25 07:35:17 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-08-25 07:35:17 +0000 |
commit | 2912aafe259727351eb9405532e45aa3501b7e9a (patch) | |
tree | 34774a49306ae19a6682580d41927fcfb222ea6e /OpenSim/Framework/IClientAPI.cs | |
parent | Mantis#2043. Thank you kindly, Ralphos for a patch that addresses: (diff) | |
download | opensim-SC_OLD-2912aafe259727351eb9405532e45aa3501b7e9a.zip opensim-SC_OLD-2912aafe259727351eb9405532e45aa3501b7e9a.tar.gz opensim-SC_OLD-2912aafe259727351eb9405532e45aa3501b7e9a.tar.bz2 opensim-SC_OLD-2912aafe259727351eb9405532e45aa3501b7e9a.tar.xz |
* This commit incorporates the heart of the OpenGridProtocol patch that is currently on Forge in a nice, friendly modular format.
* There are a lot of changes and this is quite experimental. It's off by default, but you can turn it on by examining the bottom of the opensim.ini.example for the proper OpenSim.ini settings. Remember, you still need an agent domain..
* Furthermore, it isn't quite right when it comes to teleporting to remote regions (place_avatar)
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 b2d13c7..f437902 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -349,6 +349,11 @@ namespace OpenSim.Framework | |||
349 | set; | 349 | set; |
350 | } | 350 | } |
351 | 351 | ||
352 | bool SendLogoutPacketWhenClosing | ||
353 | { | ||
354 | set; | ||
355 | } | ||
356 | |||
352 | // [Obsolete("LLClientView Specific - Circuits are unique to LLClientView")] | 357 | // [Obsolete("LLClientView Specific - Circuits are unique to LLClientView")] |
353 | uint CircuitCode { get; } | 358 | uint CircuitCode { get; } |
354 | // [Obsolete("LLClientView Specific - Replace with more bare-bones arguments.")] | 359 | // [Obsolete("LLClientView Specific - Replace with more bare-bones arguments.")] |
@@ -741,5 +746,6 @@ namespace OpenSim.Framework | |||
741 | 746 | ||
742 | void SendRegionHandle(LLUUID regoinID, ulong handle); | 747 | void SendRegionHandle(LLUUID regoinID, ulong handle); |
743 | void SendParcelInfo(RegionInfo info, LandData land, LLUUID parcelID, uint x, uint y); | 748 | void SendParcelInfo(RegionInfo info, LandData land, LLUUID parcelID, uint x, uint y); |
749 | void KillEndDone(); | ||
744 | } | 750 | } |
745 | } | 751 | } |