Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 1.07 KB

tcp_reno_cong_avoid.md

File metadata and controls

38 lines (25 loc) · 1.07 KB
title description
KFunc 'tcp_reno_cong_avoid'
This page documents the 'tcp_reno_cong_avoid' eBPF kfunc, including its defintion, usage, program types that can use it, and examples.

KFunc tcp_reno_cong_avoid

:octicons-tag-24: v5.13

Do new congestion window calculation

Definition

This is Jacobson's slow start and congestion avoidance. SIGCOMM '88, p. 328.

#!c void tcp_reno_cong_avoid(struct sock *sk, u32 ack, u32 acked)

Usage

!!! example "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

!!! example "Docs could be improved" This part of the docs is incomplete, contributions are very welcome