libcosmos
Linux C++ System Programming Library
|
const variant of the struct iovec from system headers. More...
#include <iovector.hxx>
Public Attributes | |
const void * | iov_base = nullptr |
size_t | iov_len = 0 |
const variant of the struct iovec from system headers.
struct iovec
is used for both, input and output operations. For being able to satisfy const semantics when writing data using an IO vector we need a variant of struct iovec that takes a const pointer. To do this we need a data structure that is equal to the system header's struct iovec with the exception of the const modifier for iov_base
. It is casted to the original struct iovec
internally when being passed to system calls, using the asIovec() helper.
Definition at line 33 of file iovector.hxx.
const void* cosmos::iovec_const::iov_base = nullptr |
Definition at line 34 of file iovector.hxx.
size_t cosmos::iovec_const::iov_len = 0 |
Definition at line 35 of file iovector.hxx.