diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/Communications/Cache/AssetCache.cs | 1 | ||||
-rw-r--r-- | OpenSim/Framework/General/Interfaces/IClientAPI.cs | 2 | ||||
-rw-r--r-- | OpenSim/Framework/General/NullClientAPI.cs | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/Cache/AssetCache.cs b/OpenSim/Framework/Communications/Cache/AssetCache.cs index 0c6d971..e4c01b3 100644 --- a/OpenSim/Framework/Communications/Cache/AssetCache.cs +++ b/OpenSim/Framework/Communications/Cache/AssetCache.cs | |||
@@ -272,6 +272,7 @@ namespace OpenSim.Framework.Communications.Caches | |||
272 | //inventory asset request | 272 | //inventory asset request |
273 | requestID = new LLUUID(transferRequest.TransferInfo.Params, 80); | 273 | requestID = new LLUUID(transferRequest.TransferInfo.Params, 80); |
274 | source = 3; | 274 | source = 3; |
275 | Console.WriteLine("asset request " + requestID); | ||
275 | } | 276 | } |
276 | //check to see if asset is in local cache, if not we need to request it from asset server. | 277 | //check to see if asset is in local cache, if not we need to request it from asset server. |
277 | //Console.WriteLine("asset request " + requestID); | 278 | //Console.WriteLine("asset request " + requestID); |
diff --git a/OpenSim/Framework/General/Interfaces/IClientAPI.cs b/OpenSim/Framework/General/Interfaces/IClientAPI.cs index c1d91d5..1e2889c 100644 --- a/OpenSim/Framework/General/Interfaces/IClientAPI.cs +++ b/OpenSim/Framework/General/Interfaces/IClientAPI.cs | |||
@@ -174,7 +174,7 @@ namespace OpenSim.Framework.Interfaces | |||
174 | void SendWearables(AvatarWearable[] wearables); | 174 | void SendWearables(AvatarWearable[] wearables); |
175 | void SendAppearance(LLUUID agentID, byte[] visualParams, byte[] textureEntry); | 175 | void SendAppearance(LLUUID agentID, byte[] visualParams, byte[] textureEntry); |
176 | void SendStartPingCheck(byte seq); | 176 | void SendStartPingCheck(byte seq); |
177 | void SendKillObject(ulong regionHandle, uint avatarLocalID); | 177 | void SendKillObject(ulong regionHandle, uint localID); |
178 | void SendAnimation(LLUUID animID, int seq, LLUUID sourceAgentId); | 178 | void SendAnimation(LLUUID animID, int seq, LLUUID sourceAgentId); |
179 | void SendRegionHandshake(RegionInfo regionInfo); | 179 | void SendRegionHandshake(RegionInfo regionInfo); |
180 | void SendChatMessage(string message, byte type, LLVector3 fromPos, string fromName, LLUUID fromAgentID); | 180 | void SendChatMessage(string message, byte type, LLVector3 fromPos, string fromName, LLUUID fromAgentID); |
diff --git a/OpenSim/Framework/General/NullClientAPI.cs b/OpenSim/Framework/General/NullClientAPI.cs index 45c1a14..c0b4e8a 100644 --- a/OpenSim/Framework/General/NullClientAPI.cs +++ b/OpenSim/Framework/General/NullClientAPI.cs | |||
@@ -106,7 +106,7 @@ namespace OpenSim.Framework | |||
106 | public virtual void SendWearables(AvatarWearable[] wearables){} | 106 | public virtual void SendWearables(AvatarWearable[] wearables){} |
107 | public virtual void SendAppearance(LLUUID agentID, byte[] visualParams, byte[] textureEntry) { } | 107 | public virtual void SendAppearance(LLUUID agentID, byte[] visualParams, byte[] textureEntry) { } |
108 | public virtual void SendStartPingCheck(byte seq){} | 108 | public virtual void SendStartPingCheck(byte seq){} |
109 | public virtual void SendKillObject(ulong regionHandle, uint avatarLocalID){} | 109 | public virtual void SendKillObject(ulong regionHandle, uint localID){} |
110 | public virtual void SendAnimation(LLUUID animID, int seq, LLUUID sourceAgentId){} | 110 | public virtual void SendAnimation(LLUUID animID, int seq, LLUUID sourceAgentId){} |
111 | public virtual void SendRegionHandshake(RegionInfo regionInfo){} | 111 | public virtual void SendRegionHandshake(RegionInfo regionInfo){} |
112 | public virtual void SendChatMessage(string message, byte type, LLVector3 fromPos, string fromName, LLUUID fromAgentID){} | 112 | public virtual void SendChatMessage(string message, byte type, LLVector3 fromPos, string fromName, LLUUID fromAgentID){} |