From b6e59fb3cdc5c79174603d77bf04c706e3365bc2 Mon Sep 17 00:00:00 2001 From: Jacob Barthelmeh Date: Wed, 5 Dec 2018 12:00:56 -0700 Subject: [PATCH] remove test.h fcntl from build with nucleus port --- wolfssh/test.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wolfssh/test.h b/wolfssh/test.h index a77623b..1f7a8f3 100644 --- a/wolfssh/test.h +++ b/wolfssh/test.h @@ -547,7 +547,8 @@ static INLINE void tcp_set_nonblocking(SOCKET_T* sockfd) if (ret == SOCKET_ERROR) err_sys("ioctlsocket failed"); #elif defined(WOLFSSL_MDK_ARM) || defined(WOLFSSL_KEIL_TCP_NET) \ - || defined (WOLFSSL_TIRTOS)|| defined(WOLFSSL_VXWORKS) + || defined (WOLFSSL_TIRTOS)|| defined(WOLFSSL_VXWORKS) || \ + defined(WOLFSSL_NUCLEUS) /* non blocking not supported, for now */ #else int flags = fcntl(*sockfd, F_GETFL, 0);