default application examples of the netconn and socket server because of the random selection of the udp/tcp port
Hello,
the default application examples of the netconn and socket server based on lwip doens't
work because the udp and tcp port which are selected randomly (LWIP_RAND() ) could be ouside the autorized ranges (UDP_ENSURE_LOCAL_PORT_RANGE)
hw id: nucleoH723G
fm version :STM32Cube_FW_H7_V1.9.0
app id : LwIP_HTTP_Server_Socket_RTOS & LwIP_HTTP_Server_Netconn_RTOS
The comment of the line #define LWIP_RAND() ((u32_t)rand()) fixes the issue.
/* Define random number generator function */
//#define LWIP_RAND() ((u32_t)rand())
