Lines Matching refs:choked
202 timer_Stop(&bundle->choked.timer); in bundle_ClearQueues()
475 if (bundle->choked.timer.state == TIMER_RUNNING) in bundle_UpdateSet()
476 timer_Stop(&bundle->choked.timer); /* Not needed any more */ in bundle_UpdateSet()
482 } else if (bundle->choked.timer.state == TIMER_STOPPED) { in bundle_UpdateSet()
483 bundle->choked.timer.func = bundle_ClearQueues; in bundle_UpdateSet()
484 bundle->choked.timer.name = "output choke"; in bundle_UpdateSet()
485 bundle->choked.timer.load = bundle->cfg.choked.timeout * SECTICKS; in bundle_UpdateSet()
486 bundle->choked.timer.arg = bundle; in bundle_UpdateSet()
487 timer_Start(&bundle->choked.timer); in bundle_UpdateSet()
841 bundle.cfg.choked.timeout = CHOKED_TIMEOUT; in bundle_Create()
884 memset(&bundle.choked.timer, '\0', sizeof bundle.choked.timer); in bundle_Create()
915 timer_Stop(&bundle->choked.timer); in bundle_Destroy()
1096 arg->bundle->cfg.choked.timeout); in bundle_ShowStatus()