| 3496 | } |
| 3497 | |
| 3498 | static uint16_t |
| 3499 | bbr_gain_adjust(struct tcp_bbr *bbr, uint16_t gain) |
| 3500 | { |
| 3501 | if (gain < 1) |
| 3502 | gain = 1; |
| 3503 | return (gain); |
| 3504 | } |
| 3505 | |
| 3506 | static uint32_t |
| 3507 | bbr_get_header_oh(struct tcp_bbr *bbr) |
no outgoing calls
no test coverage detected