pkarashchenko commented on code in PR #7627: URL: https://github.com/apache/incubator-nuttx/pull/7627#discussion_r1027293792
########## net/usrsock/usrsock_sockif.c: ########## @@ -98,43 +98,6 @@ static int usrsock_sockif_setup(FAR struct socket *psock, int protocol) int type = psock->s_type; int ret; -#ifdef CONFIG_NET_USRSOCK_NO_INET - if (domain == PF_INET) - { - return -ENETDOWN; - } -#endif - -#ifdef CONFIG_NET_USRSOCK_NO_INET6 - if (domain == PF_INET6) - { - return -ENETDOWN; - } -#endif Review Comment: Is this now covered by config options? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org