aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorMelanie2011-10-25 02:54:34 +0100
committerMelanie2011-10-25 02:54:34 +0100
commitdc24ac4f20fb145885327609f9265aa212b9a1d2 (patch)
tree9e83a7f9245c8f1110ef8449eeb3059dfd5787a6 /OpenSim/Framework
parentMerge commit '96ff2c63ed47e29a92cc79b6e8753d21e54da061' into bigmerge (diff)
parentrefactor: Make IClientAPI.DebugPacketFormat a property rather than a setter w... (diff)
downloadopensim-SC_OLD-dc24ac4f20fb145885327609f9265aa212b9a1d2.zip
opensim-SC_OLD-dc24ac4f20fb145885327609f9265aa212b9a1d2.tar.gz
opensim-SC_OLD-dc24ac4f20fb145885327609f9265aa212b9a1d2.tar.bz2
opensim-SC_OLD-dc24ac4f20fb145885327609f9265aa212b9a1d2.tar.xz
Merge commit '120114e96becc6fee1311300359dcefaf4013c0e' into bigmerge
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/IClientAPI.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 0557fb6..925998f 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -1011,11 +1011,11 @@ namespace OpenSim.Framework
1011 event MuteListEntryRemove OnRemoveMuteListEntry; 1011 event MuteListEntryRemove OnRemoveMuteListEntry;
1012 event GodlikeMessage onGodlikeMessage; 1012 event GodlikeMessage onGodlikeMessage;
1013 event GodUpdateRegionInfoUpdate OnGodUpdateRegionInfoUpdate; 1013 event GodUpdateRegionInfoUpdate OnGodUpdateRegionInfoUpdate;
1014 1014
1015 /// <summary> 1015 /// <summary>
1016 /// Set the debug level at which packet output should be printed to console. 1016 /// Set the debug level at which packet output should be printed to console.
1017 /// </summary> 1017 /// </summary>
1018 void SetDebugPacketLevel(int newDebug); 1018 int DebugPacketLevel { get; set; }
1019 1019
1020 void InPacket(object NewPack); 1020 void InPacket(object NewPack);
1021 void ProcessInPacket(Packet NewPack); 1021 void ProcessInPacket(Packet NewPack);