nuttx/net/local
Tiago Medicci Serrano 4f4a00ab1f net/local: fix blocking local sockets
Commit 4d6a8663fa made pipes and
named pipes block when opening for O_WRONLY or O_RDONLY. Local
sockets, however, require `local_open_client_tx` to be non-blocking
to enable the server side to prevent the server side from blocking.
If set otherwise, it would deadly block. This commit sets the FIFO
as non-blocking temporarily, open the TX side and, if originally
blocking - restores it to that state.
2023-05-11 11:39:00 +08:00
..
Kconfig
local_accept.c net: remove conn-related casts 2023-05-10 19:32:09 -03:00
local_bind.c net: remove conn-related casts 2023-05-10 19:32:09 -03:00
local_conn.c
local_connect.c net: remove conn-related casts 2023-05-10 19:32:09 -03:00
local_fifo.c net/local: fix blocking local sockets 2023-05-11 11:39:00 +08:00
local_listen.c net: remove conn-related casts 2023-05-10 19:32:09 -03:00
local_netpoll.c net: remove conn-related casts 2023-05-10 19:32:09 -03:00
local_recvmsg.c net: remove conn-related casts 2023-05-10 19:32:09 -03:00
local_recvutils.c
local_release.c
local_sendmsg.c net: remove conn-related casts 2023-05-10 19:32:09 -03:00
local_sendpacket.c
local_sockif.c net: remove conn-related casts 2023-05-10 19:32:09 -03:00
local.h
Make.defs