ltm rule command UDP sendbufferΒΆ

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

UDP::sendbuffer
       This command can be used to set/get the maximum send buffer size (bytes) of a UDP connection.

SYNOPSIS
       UDP::sendbuffer (UDP_SNDBUF_SIZE)?

DESCRIPTION
       UDP::sendbuffer returns the maximum send buffer size (bytes) of a UDP connection.  UDP::sendbuffer BUFFERSIZE
       sets the maximum send buffer size (bytes) to specified value.

RETURN VALUE
       UDP::sendbuffer returns the maximum send buffer size (bytes) of a UDP connection.

VALID DURING
       ANY_EVENT

EXAMPLES
	# Get/set the send buffer size of the UDP flow.
	when CLIENT_ACCEPTED {
	    log local0. "UDP get send buffer: [UDP::sendbuffer]"
	    # Set the send buffer to 2,000,000 bytes
	    log local0. "UDP set send buffer: [UDP::sendbuffer 2000000]"
	    log local0. "UDP get send buffer: [UDP::sendbuffer]"
	}

HINTS
SEE ALSO
CHANGE LOG
       @BIGIP-14.0.0
	   --first introduce the command.

BIG-IP						      2020-06-23					     iRule(1)