TCP::lossfilterburst

Description

This iRule command gets the TCP loss ignore burst parameter. Gets the maximum size burst loss (in packets) before triggering congestion response.

  • Burst range is valid from 0 to 32. Higher values decrease the chance of performing congestion control.

Syntax

TCP::lossfilterburst

Examples

when SERVER_CONNECTED {
    # Set loss filter burst to a maximum of 3
    if { [TCP::lossfilterburst] > 3 } {
        TCP::lossfilter [TCP::lossfilterrate] 3
    }
}