This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

RTOS/TM4C1294KCPDT: What header files should be included to use BSD style NDK and generic support calls?

Part Number: TM4C1294KCPDT

Tool/software: TI-RTOS

I include <sys/socket.h> to get BSD sockets as do the examples in the resource explorer. I need to use inet_pton().

inet_pton() is in <ti/ndk/inc/nettools/inc/inet.h>

<ti/ndk/inc/nettools/inc/inet.h> needs IPN defined which is in <ti/ndk/inc/usertype.h>

<ti/ndk/inc/usertype.h> will not work with  <sys/socket.h> because they both define IP6N, but  <sys/socket.h> does not define IPN.

What is the appropriate set up to resolve this game of whack-a-mole?