aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-10-17 20:50:29 +0100
committerJustin Clark-Casey (justincc)2011-10-17 20:50:29 +0100
commit120114e96becc6fee1311300359dcefaf4013c0e (patch)
treeb03fd72833eb974da4eb4ac8795cf74c69cd0770 /OpenSim/Framework/IClientAPI.cs
parentAdd avatar names to debug packet output (diff)
downloadopensim-SC_OLD-120114e96becc6fee1311300359dcefaf4013c0e.zip
opensim-SC_OLD-120114e96becc6fee1311300359dcefaf4013c0e.tar.gz
opensim-SC_OLD-120114e96becc6fee1311300359dcefaf4013c0e.tar.bz2
opensim-SC_OLD-120114e96becc6fee1311300359dcefaf4013c0e.tar.xz
refactor: Make IClientAPI.DebugPacketFormat a property rather than a setter without a getter
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-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 c1770a1..1be92ff 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -1006,11 +1006,11 @@ namespace OpenSim.Framework
1006 event MuteListEntryRemove OnRemoveMuteListEntry; 1006 event MuteListEntryRemove OnRemoveMuteListEntry;
1007 event GodlikeMessage onGodlikeMessage; 1007 event GodlikeMessage onGodlikeMessage;
1008 event GodUpdateRegionInfoUpdate OnGodUpdateRegionInfoUpdate; 1008 event GodUpdateRegionInfoUpdate OnGodUpdateRegionInfoUpdate;
1009 1009
1010 /// <summary> 1010 /// <summary>
1011 /// Set the debug level at which packet output should be printed to console. 1011 /// Set the debug level at which packet output should be printed to console.
1012 /// </summary> 1012 /// </summary>
1013 void SetDebugPacketLevel(int newDebug); 1013 int DebugPacketLevel { get; set; }
1014 1014
1015 void InPacket(object NewPack); 1015 void InPacket(object NewPack);
1016 void ProcessInPacket(Packet NewPack); 1016 void ProcessInPacket(Packet NewPack);