SERVERSSL_DATA¶
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
}