As Simon said, these are more of mbedTLS questions than lwIP > In this case, > 1. Is the support available for Unix? Check file net_sockets.c it uses socket APIs which are directly compatible with lwIP socket APIs make sure you enable them in lwipopts.h
> 2. Should I install mbedTLS library and specify its location while building > the stack or is the library already included in the stack? I am not sure about what build system you're using so not sure how to put this, you need to build all of it together > 3. If the library is already included, are all the APIs needed to setup a > TLS connection over TCP available? > mbedTLS will use net_socket wrapper functions, so you need to use mbedTLS APIs to make a TLS connection. Check code samples in program folder of mbedTLS library. -- Ajay Bhargav _______________________________________________ lwip-users mailing list [email protected] https://lists.nongnu.org/mailman/listinfo/lwip-users
