ltm rule command RTSP releaseΒΆ

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



RTSP::release
       Releases the collected data.

SYNOPSIS
       RTSP::release

DESCRIPTION
       Releases the collected data. Unless a subsequent RTSP::collect command
       was issued, there is no need to use the RTSP::release command inside of
       the RTSP_REQUEST_DATA and RTSP_RESPONSE_DATA events, since in these
       cases, the data is implicitly released.

       Syntax

       RTSP::release

	    * Releases the collected data.

RETURN VALUE
VALID DURING
EXAMPLES
	rule xxx {
	    when RTSP_REQUEST {
		RTSP::collect
	    }
	    when RTSP_REQUEST_DATA {
		if {[RTSP::payload length] > 10 } {
		    RTSP::release
		}
	    }
	}

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



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