FLOW::idle_timeout

Description

This iRule command Sets/Gets the idle timeout on the flow. On error an exception is thrown with a message indicating the cause of failure.

  • Set operation: Nothing is returned
  • Get operation: Idle timeout set on the flow as number string.

Syntax

FLOW::idle_timeout <any_chars> [nonnegative_integer]

Examples

when SERVER_CONNECTED {
    set cf [FLOW::this]

    #Get flow idletimeout
    log local0. "Idle timeout: [FLOW::idle_timeout $cf]"

    #Set flow idletimeout
    FLOW::idle_timeout $cf 100

    unset cf
}