add lwip support into os_settings.h

This commit is contained in:
Todd A Ouska 2011-05-24 12:38:42 -07:00
parent f97976da2b
commit 7d533569d6

View File

@ -44,6 +44,9 @@
/* Uncomment next line if using FreeRTOS */
/* #define FREERTOS */
/* Uncomment next line if using lwip */
/* #define CYASSL_LWIP */
#if defined(USE_CYASSL_CONFIG) || defined(HAVE_CONFIG_H)
#include "config.h" /* may not want global HAVE_CONFIG_H */
#endif
@ -76,6 +79,10 @@
#define NO_DH
#define NO_DSA
#define NO_HC128
#define CYASSL_LWIP /* by default for now */
#endif
#ifdef CYASSL_LWIP
#define LWIP_SOCKETS
#define LWIP_PROVIDE_ERRNO
#endif