]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'tcp-fastopen-new-API'
authorDavid S. Miller <davem@davemloft.net>
Wed, 25 Jan 2017 19:04:39 +0000 (14:04 -0500)
committerDavid S. Miller <davem@davemloft.net>
Wed, 25 Jan 2017 19:04:39 +0000 (14:04 -0500)
commitc9486b55309794a939500219dc456be5d2fe915d
tree87a4399e42ae6b0ae622718952d66e666e64d3ef
parent1ff5d43cf18bd32a61bfacbf54cf7a625b2750ec
parent2629f61e43482f086ac5c609bb5cd62091ce1907
Merge branch 'tcp-fastopen-new-API'

Wei Wang says:

====================
net/tcp-fastopen: Add new userspace API support

The patch series is to add support for new userspace API for TCP fastopen
sockets.
In the current code, user has to call sendto()/sendmsg() with special flag
MSG_FASTOPEN for TCP fastopen sockets. This API is quite different from the
normal TCP socket API and can be cumbersome for applications to make use
fastopen sockets.
So this new patch introduces a new way of using TCP fastopen sockets which
is similar to normal TCP sockets with a new sockopt TCP_FASTOPEN_CONNECT.
More details about it is described in the third patch.
(First 2 patches are preparations for the third patch.)
====================

Signed-off-by: David S. Miller <davem@davemloft.net>