ltm rule command SSL modssl sessionid headersΒΆ

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

SSL::modssl_sessionid_headers
       Returns a list of fields for HTTP headers.

SYNOPSIS
       SSL::modssl_sessionid_headers (initial | current)?

DESCRIPTION
       Returns a list of fields that the system will add to the HTTP headers, in order to emulate modssl behavior. The return type
       is a Tcl list; this list will be interpreted as a header-name/header-value pair by HTTP::header, for example.

RETURN VALUE
       SSL::modssl_sessionid_headers
	   Returns a header name of "SSLClientSessionId", and a header value of the session id requested by the client.

       SSL::modssl_sessionid_headers initial
	   Returns a header name of "SSLClientSessionId", and a header value of the session id requested by the client.

       SSL::modssl_sessionid_headers currentX
	   Returns a header name of "SSLClientCurrentSessionId", and a header value of the session id that is actually used, i.e.
       the one returned by the server.

VALID DURING
       ANY_EVENT

EXAMPLES
	when HTTP_REQUEST {
	    HTTP::header insert [SSL::modssl_sessionid_headers]
	}

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

BIG-IP							    2022-04-12							  iRule(1)