In Fiddler2\Scripts\SampleRules.js
static function OnBeforeRequest(oSession: Session)
{
if (m_SimulateModem){
// Delay sends by 300ms per KB uploaded.
oSession["request-trickle-delay"] = "300";
}
static function OnBeforeResponse(oSession: Session)
{
if (m_SimulateModem){
// Delay receives by 150ms per KB downloaded.
oSession["response-trickle-delay"] = "150";
}
Is there a theroy about the simulation of modem?
What about the other velocity? i.e. ADSL...
You can adjust these to match any other connection speed you want, so
long as such speed is slower than how you're actually connected to the
network, of course.
The neXpert plugin for Fiddler does response-time predictions using
data from Microsoft Research.