diff options
author | Dalien Talbot | 2007-09-13 16:39:04 +0000 |
---|---|---|
committer | Dalien Talbot | 2007-09-13 16:39:04 +0000 |
commit | 1703cacaab91a980c96458f0f49284ab68168130 (patch) | |
tree | 233773070afd5b4018fe0c18438b20d95f2f7b06 /OpenSim/Framework/General | |
parent | llSetPos(), llGetPos(), llGetLocalPos() now implemented (diff) | |
download | opensim-SC_OLD-1703cacaab91a980c96458f0f49284ab68168130.zip opensim-SC_OLD-1703cacaab91a980c96458f0f49284ab68168130.tar.gz opensim-SC_OLD-1703cacaab91a980c96458f0f49284ab68168130.tar.bz2 opensim-SC_OLD-1703cacaab91a980c96458f0f49284ab68168130.tar.xz |
Added CLI "debug packet 0..255" to enable the in/out packet dumps with various verbosity
Diffstat (limited to 'OpenSim/Framework/General')
-rw-r--r-- | OpenSim/Framework/General/Interfaces/IClientAPI.cs | 1 | ||||
-rw-r--r-- | OpenSim/Framework/General/NullClientAPI.cs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Framework/General/Interfaces/IClientAPI.cs b/OpenSim/Framework/General/Interfaces/IClientAPI.cs index c162163..8155373 100644 --- a/OpenSim/Framework/General/Interfaces/IClientAPI.cs +++ b/OpenSim/Framework/General/Interfaces/IClientAPI.cs | |||
@@ -240,5 +240,6 @@ namespace OpenSim.Framework.Interfaces | |||
240 | 240 | ||
241 | void SendViewerTime(int phase); | 241 | void SendViewerTime(int phase); |
242 | void SendAvatarProperties(LLUUID avatarID, string aboutText, string bornOn, string charterMember, string flAbout, uint flags, LLUUID flImageID, LLUUID imageID, string profileURL, LLUUID partnerID); | 242 | void SendAvatarProperties(LLUUID avatarID, string aboutText, string bornOn, string charterMember, string flAbout, uint flags, LLUUID flImageID, LLUUID imageID, string profileURL, LLUUID partnerID); |
243 | void SetDebug(int newDebug); | ||
243 | } | 244 | } |
244 | } | 245 | } |
diff --git a/OpenSim/Framework/General/NullClientAPI.cs b/OpenSim/Framework/General/NullClientAPI.cs index ab89323..56faae2 100644 --- a/OpenSim/Framework/General/NullClientAPI.cs +++ b/OpenSim/Framework/General/NullClientAPI.cs | |||
@@ -166,6 +166,7 @@ namespace OpenSim.Framework | |||
166 | 166 | ||
167 | public void SendViewerTime(int phase) { } | 167 | public void SendViewerTime(int phase) { } |
168 | public void SendAvatarProperties(LLUUID avatarID, string aboutText, string bornOn, string charterMember, string flAbout, uint flags, LLUUID flImageID, LLUUID imageID, string profileURL, LLUUID partnerID) { } | 168 | public void SendAvatarProperties(LLUUID avatarID, string aboutText, string bornOn, string charterMember, string flAbout, uint flags, LLUUID flImageID, LLUUID imageID, string profileURL, LLUUID partnerID) { } |
169 | public void SetDebug(int newDebug) { } | ||
169 | } | 170 | } |
170 | } | 171 | } |
171 | 172 | ||