ltm rule command SSL releaseΒΆ

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

SSL::release
       Releases the collected plaintext data.

SYNOPSIS
       SSL::release (LENGTH)?

DESCRIPTION
       Releases the collected plaintext data to the next layer/filter up.

RETURN VALUE
       SSL::release []
	   Releases the collected plaintext data to the next layer/filter up.

VALID DURING
       SSL AUTH

EXAMPLES
	when SERVERSSL_HANDSHAKE {
	    # Trigger collection of the decrypted payload once the SSL handshake has been completed successfully
	    SSL::collect
	}
	when SERVERSSL_DATA {
	    # Do something with the decrypted data
	    set payload [SSL::payload]

	    # Release the payload
	    SSL::release
	}

HINTS
SEE ALSO
       DTLS Echo iRule  - DTLS Echo

CHANGE LOG
       @BIGIP-10.0.0 --First introduced the command.

BIG-IP						      2020-06-23					     iRule(1)