sockets: add readv() implementation (task #14610)

Adds an implementation of readv() that calls recvmsg()

See http://pubs.opengroup.org/onlinepubs/009695399/functions/readv.html
This commit is contained in:
Joel Cunningham
2017-09-10 22:37:40 -05:00
parent 558480a5b9
commit 445eef2b0e
3 changed files with 24 additions and 0 deletions

View File

@@ -6,6 +6,9 @@ HISTORY
++ New features:
2017-09-10: Joel Cunningham
* sockets: add readv() implementation (task #14610)
2017-08-04: Simon Goldschmidt
* Clean up DHCP a bit: no need keep msg_out and msg_in as members in struct
dhcp - they are used in a call stack only (p_out and options_out_len as well)