ltm rule command DIAMETER is retransmissionΒΆ

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



DIAMETER::is_retransmission
       Returns true if it is a retransmitted request, otherwise, returns
       false.

SYNOPSIS
       DIAMETER::is_retransmission

DESCRIPTION
       This iRule command returns true if the current message is a
       retransmitted request.  Otherwise, it returns false.

       Syntax DIAMETER::is_retransmission

RETURN VALUE
       TRUE or FALSE

VALID DURING
       DIAMETER_INGRESS, DIAMETER_EGRESS, DIAMETER_RETRANSMISSION, MR_INGRESS,
       MR_EGRESS, MR_FAILED

EXAMPLES
	when MR_INGRESS {
	    if { [DIAMETER::is_retransmission] } {
		DIAMETER::persist reset
		MR::message route pool /Common/alt_pool
	    }
	}

HINTS
SEE ALSO
CHANGE LOG
       @BIGIP-14.1.0 --First introduced the command.



BIG-IP				  2019-05-10			      iRule(1)