generic_cong_avoid 0.3.0

A Congestion Control Plane
docs.rs failed to build generic_cong_avoid-0.3.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: generic_cong_avoid-0.4.0

CCP Algorithm: Generic Congestion Avoidance

This repository provides a higher-level API on top of CCP for the increase-decrease family of congestion control algorithms. It also implements TCP Reno and TCP Cubic using this API.

To get started using this algorithm with CCP, please see our guide.

Notes

  • In order to use this algorithm for congestion control, you also need to install a CCP datapath. If you see errors about not being able to install a datapath program, it means that you have either not installed a datapath, or the IPC mechanism between the algorithm and datapath is not configured properly.
  • For a simple example of how to use this API, see src/reno.rs.