.rplbuffsize R/O Property (32-Bit Platforms Only)
Function: |
For the currently selected socket (selection is made through sock.num), returns the current RPL buffer capacity in bytes. |
Type: |
Dword |
Value Range: |
Platform-dependent, default = 0 |
See Also: |
--- |
Details
The RPL buffer stores outgoing inband replies (messages).
The buffer capacity can be changed through the sock.rplbuffrq method, which requests the buffer size in 256-byte pages, whereas this property returns the buffer size in bytes.
The relationship between the two is as follows: sock.rplbuffsize = num_pages * 256 - 33 (or = 0 when num_pages = 0), where "num_pages" is the number of buffer pages that was GRANTED through the sock.rplbuffrq. The "- 33" is because this number of bytes is needed for internal buffer variables.
The RPL buffer is only required when inband commands are enabled (sock.inbandcommands = 1 — YES).
This property is only available on 32-bit platforms.