Re: [PATCH v2 net-next 03/13] net: Allow MSG_EOR in each msghdr of sendmmsg

2018-04-07 Thread Andreas Schwab
On Mär 07 2016, Tom Herbert wrote: > This patch allows setting MSG_EOR in each individual msghdr passed > in sendmmsg. This allows a sendmmsg to send multiple messages when > using SOCK_SEQPACKET. This adds a new requirement to the interface of sendmmsg, namely that the msg_flags field must now

[PATCH v2 net-next 03/13] net: Allow MSG_EOR in each msghdr of sendmmsg

2016-03-07 Thread Tom Herbert
This patch allows setting MSG_EOR in each individual msghdr passed in sendmmsg. This allows a sendmmsg to send multiple messages when using SOCK_SEQPACKET. Signed-off-by: Tom Herbert --- net/socket.c | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/net/socket.c b/ne