makes the buffer ready for reading the data that has been written to
the buffer. The buffer's limit is set to the current position and
the position is set to 0.
.br
buffer: the buffer to flip
.br
Returns void
ldns_buffer_rewind()
make the buffer ready for re-reading the data. The buffer's
position is reset to 0.
.br
buffer: the buffer to rewind
ldns_buffer_position()
returns the current position in the buffer (as a number of bytes)
.br
buffer: the buffer
.br
Returns the current position
ldns_buffer_set_position()
sets the buffer's position to MARK. The position must be less than
or equal to the buffer's limit.
.br
buffer: the buffer
.br
mark: the mark to use
ldns_buffer_skip()
changes the buffer's position by COUNT bytes. The position must not
be moved behind the buffer's limit or before the beginning of the
buffer.
.br
buffer: the buffer
.br
count: the count to use
AUTHOR
The ldns team at NLnet Labs. Which consists out of
Jelte Jansen and Miek Gieben.