Pulled llpacketring.h and llhttpclient.h out of the precompiled header.
This commit is contained in:
@@ -627,21 +627,21 @@ bool idle_startup()
|
||||
|
||||
|
||||
F32 dropPercent = gSavedSettings.getF32("PacketDropPercentage");
|
||||
msg->mPacketRing.setDropPercentage(dropPercent);
|
||||
msg->mPacketRing->setDropPercentage(dropPercent);
|
||||
|
||||
F32 inBandwidth = gSavedSettings.getF32("InBandwidth");
|
||||
F32 outBandwidth = gSavedSettings.getF32("OutBandwidth");
|
||||
if (inBandwidth != 0.f)
|
||||
{
|
||||
LL_DEBUGS("AppInit") << "Setting packetring incoming bandwidth to " << inBandwidth << LL_ENDL;
|
||||
msg->mPacketRing.setUseInThrottle(TRUE);
|
||||
msg->mPacketRing.setInBandwidth(inBandwidth);
|
||||
msg->mPacketRing->setUseInThrottle(TRUE);
|
||||
msg->mPacketRing->setInBandwidth(inBandwidth);
|
||||
}
|
||||
if (outBandwidth != 0.f)
|
||||
{
|
||||
LL_DEBUGS("AppInit") << "Setting packetring outgoing bandwidth to " << outBandwidth << LL_ENDL;
|
||||
msg->mPacketRing.setUseOutThrottle(TRUE);
|
||||
msg->mPacketRing.setOutBandwidth(outBandwidth);
|
||||
msg->mPacketRing->setUseOutThrottle(TRUE);
|
||||
msg->mPacketRing->setOutBandwidth(outBandwidth);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user