netvector struct
This vector type is passed to netconn_write_vectors_partly to send multiple buffers at once. ATTENTION: This type has to directly map struct iovec since one is casted into the other!
Syntax
struct netvector
{
const void *ptr;
size_t len;
};
Fields
pointer to the application buffer that contains the data to send.
size of the application data to send.