ltm rule command SSL respondΒΆ

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



SSL::respond
       Return data back to the origin via SSL.

SYNOPSIS
       SSL::respond DATA

DESCRIPTION
       Returns the specified plaintext data back to the origin over the
       encrypted SSL connection.

RETURN VALUE
       SSL::respond 
	   Returns the specified plaintext data back to the origin over the
       encrypted SSL connection.

VALID DURING
EXAMPLES
	when CLIENTSSL_HANDSHAKE {
	  # Trigger collection of the decrypted payload once the SSL or DTLS handshake has been completed successfully
	  SSL::collect
	}

	when CLIENTSSL_DATA {
	   # Send decrypted payload back to client
	   SSL::respond [SSL::payload]

	   # Cleanup payload
	   SSL::payload replace 0 [SSL::payload length] ""

	   # Release collected data
	   SSL::release

	   # Collect new data - CLIENTSSL_DATA will be called again
	   SSL::collect
	}

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



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