| 474 | } |
| 475 | |
| 476 | u64 flows_worst_delay(struct flow **flows) |
| 477 | { |
| 478 | u64 maxdelay = 0; |
| 479 | for (size_t i = 0; i < tal_count(flows); i++) { |
| 480 | u64 delay = flow_delay(flows[i]); |
| 481 | if (delay > maxdelay) |
| 482 | maxdelay = delay; |
| 483 | } |
| 484 | return maxdelay; |
| 485 | } |
| 486 | |
| 487 | #ifndef SUPERVERBOSE_ENABLED |
| 488 | #undef SUPERVERBOSE |
nothing calls this directly
no test coverage detected