mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-06 03:02:55 +00:00
Kernel: Add support for the MSG_WAITALL sys$recvmsg flag
This commit is contained in:
parent
5514d60d8d
commit
e521ffd156
Notes:
sideshowbarker
2024-07-17 23:10:44 +09:00
Author: https://github.com/IdanHo
Commit: e521ffd156
Pull-request: https://github.com/SerenityOS/serenity/pull/11152
Reviewed-by: https://github.com/awesomekling
3 changed files with 22 additions and 10 deletions
|
@ -607,8 +607,8 @@ static void format_connect(FormattedSyscallBuilder& builder, int socket, const s
|
|||
struct MsgOptions : BitflagBase {
|
||||
static constexpr auto options = {
|
||||
BITFLAG(MSG_TRUNC), BITFLAG(MSG_CTRUNC), BITFLAG(MSG_PEEK),
|
||||
BITFLAG(MSG_OOB), BITFLAG(MSG_DONTROUTE), BITFLAG(MSG_DONTWAIT)
|
||||
// TODO: add MSG_WAITALL once its definition is added
|
||||
BITFLAG(MSG_OOB), BITFLAG(MSG_DONTROUTE), BITFLAG(MSG_WAITALL),
|
||||
BITFLAG(MSG_DONTWAIT)
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue