net/usrsock: fix get/setsockopt issue about usrsock protocol

Signed-off-by: dongjiuzhu1 <dongjiuzhu1@xiaomi.com>
This commit is contained in:
dongjiuzhu1
2022-11-23 18:11:11 +08:00
committed by Masayuki Ishikawa
parent 9c6971279d
commit d5b08a7ef1
4 changed files with 27 additions and 8 deletions
+1 -1
View File
@@ -189,7 +189,7 @@ int usrsock_getsockopt(FAR struct socket *psock, int level, int option,
*value_len = sizeof(int);
return OK;
}
else
else if (option == SO_RCVTIMEO || option == SO_SNDTIMEO)
{
return -ENOPROTOOPT;
}
-4
View File
@@ -174,10 +174,6 @@ int usrsock_setsockopt(FAR struct socket *psock, int level, int option,
{
return -ENOPROTOOPT;
}
else
{
return -EINVAL;
}
}
net_lock();