diff options
author | UbitUmarov | 2019-01-26 16:42:42 +0000 |
---|---|---|
committer | UbitUmarov | 2019-01-26 16:42:42 +0000 |
commit | 695d807696709920eb12c2d4bd8af07af922566d (patch) | |
tree | d2ef87a97b3505895e79387eb176fde7c373e630 /OpenSim/Region/Framework | |
parent | ok i said all ( lie ) (diff) | |
download | opensim-SC-695d807696709920eb12c2d4bd8af07af922566d.zip opensim-SC-695d807696709920eb12c2d4bd8af07af922566d.tar.gz opensim-SC-695d807696709920eb12c2d4bd8af07af922566d.tar.bz2 opensim-SC-695d807696709920eb12c2d4bd8af07af922566d.tar.xz |
change encoding of a few event caps messages
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IEventQueue.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IEventQueue.cs b/OpenSim/Region/Framework/Interfaces/IEventQueue.cs index e0c5563..8e69d4b 100644 --- a/OpenSim/Region/Framework/Interfaces/IEventQueue.cs +++ b/OpenSim/Region/Framework/Interfaces/IEventQueue.cs | |||
@@ -25,6 +25,7 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System.Text; | ||
28 | using System.Net; | 29 | using System.Net; |
29 | using OpenMetaverse; | 30 | using OpenMetaverse; |
30 | using OpenMetaverse.Packets; | 31 | using OpenMetaverse.Packets; |
@@ -58,11 +59,13 @@ namespace OpenSim.Region.Framework.Interfaces | |||
58 | void ChatterBoxSessionAgentListUpdates(UUID sessionID, UUID fromAgent, UUID anotherAgent, | 59 | void ChatterBoxSessionAgentListUpdates(UUID sessionID, UUID fromAgent, UUID anotherAgent, |
59 | bool canVoiceChat, bool isModerator, bool textMute, bool isEnterorLeave); | 60 | bool canVoiceChat, bool isModerator, bool textMute, bool isEnterorLeave); |
60 | void ChatterBoxForceClose(UUID toAgent, UUID sessionID, string reason); | 61 | void ChatterBoxForceClose(UUID toAgent, UUID sessionID, string reason); |
61 | void ParcelProperties(ParcelPropertiesMessage parcelPropertiesMessage, UUID avatarID); | 62 | //void ParcelProperties(ParcelPropertiesMessage parcelPropertiesMessage, UUID avatarID); |
62 | void GroupMembershipData(UUID receiverAgent, GroupMembershipData[] data); | 63 | void GroupMembershipData(UUID receiverAgent, GroupMembershipData[] data); |
63 | void ScriptRunningEvent(UUID objectID, UUID itemID, bool running, UUID avatarID); | 64 | void ScriptRunningEvent(UUID objectID, UUID itemID, bool running, UUID avatarID); |
64 | OSD BuildEvent(string eventName, OSD eventBody); | 65 | OSD BuildEvent(string eventName, OSD eventBody); |
65 | void partPhysicsProperties(uint localID, byte physhapetype, float density, float friction, float bounce, float gravmod, UUID avatarID); | 66 | void partPhysicsProperties(uint localID, byte physhapetype, float density, float friction, float bounce, float gravmod, UUID avatarID); |
66 | 67 | ||
68 | StringBuilder StartEvent(string eventName); | ||
69 | string EndEvent(StringBuilder sb); | ||
67 | } | 70 | } |
68 | } | 71 | } |