* CC wrapper hook functions */
| 180 | * CC wrapper hook functions |
| 181 | */ |
| 182 | static void inline |
| 183 | cc_after_idle(struct tcpcb *tp) |
| 184 | { |
| 185 | INP_WLOCK_ASSERT(tp->t_inpcb); |
| 186 | |
| 187 | if (CC_ALGO(tp)->after_idle != NULL) |
| 188 | CC_ALGO(tp)->after_idle(tp->ccv); |
| 189 | } |
| 190 | |
| 191 | /* |
| 192 | * Tcp output routine: figure out what should be sent and send it. |