mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 08:36:24 +08:00
net/socket: add SOCK_CLOEXEC/SOCK_NONBLOCK support
Reference here: https://github.com/torvalds/linux/blob/master/include/linux/net.h Change-Id: I9fd0170bcd1ae7e778e951d454ada76f63854de5 Signed-off-by: chao.an <anchao@xiaomi.com>
This commit is contained in:
+13
-1
@@ -86,12 +86,24 @@ int psock_socket(int domain, int type, int protocol,
|
||||
|
||||
psock->s_crefs = 1;
|
||||
psock->s_domain = domain;
|
||||
psock->s_type = type;
|
||||
psock->s_conn = NULL;
|
||||
#if defined(CONFIG_NET_TCP_WRITE_BUFFERS) || defined(CONFIG_NET_UDP_WRITE_BUFFERS)
|
||||
psock->s_sndcb = NULL;
|
||||
#endif
|
||||
|
||||
if (type & SOCK_CLOEXEC)
|
||||
{
|
||||
psock->s_flags |= _SF_CLOEXEC;
|
||||
}
|
||||
|
||||
if (type & SOCK_NONBLOCK)
|
||||
{
|
||||
psock->s_flags |= _SF_NONBLOCK;
|
||||
}
|
||||
|
||||
type &= SOCK_TYPE_MASK;
|
||||
psock->s_type = type;
|
||||
|
||||
#ifdef CONFIG_NET_USRSOCK
|
||||
if (domain != PF_LOCAL && domain != PF_UNSPEC)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user