GetAssets: only throttle mesh and texture
parent
deb0ab7400
commit
d2bfe986bf
|
@ -136,7 +136,9 @@ namespace OpenSim.Capabilities.Handlers
|
|||
return responsedata;
|
||||
}
|
||||
|
||||
// if(type != AssetType.Mesh && type != AssetType.Texture)
|
||||
if(type == AssetType.Mesh || type == AssetType.Texture)
|
||||
responsedata["throttle"] = true;
|
||||
// else
|
||||
// m_log.Warn("[GETASSETS]: type: " + query);
|
||||
|
||||
responsedata["content_type"] = asset.Metadata.ContentType;
|
||||
|
|
|
@ -72,6 +72,7 @@ namespace OpenSim.Region.ClientStack.Linden
|
|||
{
|
||||
public Hashtable response;
|
||||
public int bytes;
|
||||
public bool throttle;
|
||||
}
|
||||
|
||||
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||
|
@ -244,7 +245,9 @@ namespace OpenSim.Region.ClientStack.Linden
|
|||
|
||||
if (m_presence == null || m_presence.IsDeleted)
|
||||
return true;
|
||||
if(response.throttle)
|
||||
return m_presence.CapCanSendAsset(1, response.bytes);
|
||||
return m_presence.CapCanSendAsset(2, response.bytes);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
@ -352,11 +355,14 @@ namespace OpenSim.Region.ClientStack.Linden
|
|||
}
|
||||
}
|
||||
|
||||
responses[requestID] = new APollResponse()
|
||||
APollResponse preq= new APollResponse()
|
||||
{
|
||||
bytes = (int)curresponse["int_bytes"],
|
||||
response = curresponse
|
||||
};
|
||||
if(curresponse.Contains("throttle"))
|
||||
preq.throttle = true;
|
||||
responses[requestID] = preq;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue