I am using Fiddler and want to simulate different network speeds
Is there any published data that I can use to simulate different speeds using the delay value ?
Following is default code of Fiddler to simulate 56kb modem speed.
if (m_SimulateModem) {
// Delay sends by 300ms per KB uploaded.
oSession["request-trickle-delay"] = "300";
// Delay receives by 150ms per KB downloaded.
oSession["response-trickle-delay"] = "150";
}
I want the delay values for 256kbps, 512kbps, 1Mbps etc...