/* ---------------------------------- ---------- NBNS options ----------- ---------------------------------- */ /** * LWIP_NBNS==1: Turn on NetBiosNameService module. UDP must be available for NBNS * transport. */ #ifndef LWIP_NBNS #define LWIP_NBNS 0 #endif /** NBNS use a local buffer if NBNS_USES_STATIC_BUF=0, a static one if NBNS_USES_STATIC_BUF=1, or a dynamic one if NBNS_USES_STATIC_BUF=2. The buffer will be of size NBNS_MSG_SIZE */ #ifndef NBNS_USES_STATIC_BUF #define NBNS_USES_STATIC_BUF 1 #endif /** NBNS message max. size. Default value is RFC compliant. */ #ifndef NBNS_MSG_SIZE #define NBNS_MSG_SIZE 512 #endif /** NBNS client port address */ #ifndef NBNS_CLIENT_PORT #define NBNS_CLIENT_PORT 137 #endif