ltm rule event SERVERSSL DATAΒΆ

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

SERVERSSL_DATA
       Triggered when new SSL data is received from the target node after SSL::collect command has been issued.

DESCRIPTION
       An iRule event triggered after ingress SSL plaintext data has been collected from the serverssl connection.

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
       Note "commands" which may suspend iRule processing (after, persist and session) should not be used in this
       event prior to 10.1.0 where CR101506/ID204163 was fixed.

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

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