ltm rule command DIAMETER is requestΒΆ

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



DIAMETER::is_request
       Returns true if the current message is a DIAMETER request.

SYNOPSIS
       DIAMETER::is_request

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

       Syntax DIAMETER::is_request

RETURN VALUE
       TRUE or FALSE

VALID DURING
       DIAMETER_INGRESS, DIAMETER_EGRESS, MR_INGRESS, MR_EGRESS, MR_FAILED

EXAMPLES
	when DIAMETER_INGRESS {
	    if { [DIAMETER::is_request] } {
		log local0. "Request received"
	    }
	}

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



BIG-IP				  2017-01-31			      iRule(1)