ltm rule event CLIENTSSL DATAΒΆ

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



CLIENTSSL_DATA
       Triggered each time new SSL data is received from the client while the
       connection is in "collect" state.

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

Examples
	when CLIENTSSL_HANDSHAKE {
	    # Trigger collection of the decrypted payload once the SSL handshake has been completed successfully
	    SSL::collect
	}
	when CLIENTSSL_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				  2017-01-31			      iRule(1)