ltm rule event CLIENT CLOSEDΒΆ

iRule(1)						BIG-IP TMSH Manual						  iRule(1)

CLIENT_CLOSED
       This event is fired at the end of any client connection.

DESCRIPTION
       An iRule event triggered at the end of any client connection, regardless of protocol.

Examples
	when CLIENT_CLOSED {
	  if { [info exists ::active_clients($client_ip)] } {
	    incr ::active_clients($client_ip) -1
	    if { $::active_clients($client_ip) <= 0 } {
	      unset ::active_clients($client_ip)
	    }
	  }
	}

HINTS
SEE ALSO
CHANGE LOG
       @BIGIP-9.0.0 --First introduced the event.

BIG-IP							    2022-04-12							  iRule(1)