KFunc tcp_slow_start
Slow start is used when congestion window is no greater than the slow start threshold.
Definition
Slow start is used when congestion window is no greater than the slow start threshold. We base on RFC2581 and also handle stretch ACKs properly. We do not implement RFC3465 Appropriate Byte Counting (ABC) cwnd
grows over ssthresh
and returns the leftover ACKs to adjust cwnd
in congestion avoidance mode.
u32 tcp_slow_start(struct tcp_sock *tp, u32 acked)
Usage
Docs could be improved
This part of the docs is incomplete, contributions are very welcome
Program types
The following program types can make use of this kfunc:
Example
Docs could be improved
This part of the docs is incomplete, contributions are very welcome