Hi Ariela:
At the TCP level, the default RTCS setting is to allow unlimited TCP connections, it depens on your system memory.
(RTCSCFG_TCP_MAX_CONNECTIONS = 0).
At application level, some application may give additional limits.
Please refer to rtcscfg.h, Line 611
/*
** Maximum number of simultaneous connections allowed. Define as 0 for no limit.
** MGCT: <option type="number"/>
*/
#ifndef RTCSCFG_TCP_MAX_CONNECTIONS
#define RTCSCFG_TCP_MAX_CONNECTIONS 0
#endif
/*
** Maximum number of simultaneously connected clients
** over TCP protocol serviced by the ECHOSRV.
** MGCT: <option type="number"/>
*/
#ifndef RTCSCFG_ECHOSRV_MAX_TCP_CLIENTS
#define RTCSCFG_ECHOSRV_MAX_TCP_CLIENTS (4)
#endif
Regards
Daniel
-----------------------------------------------------------------------------------------------------------------------
Note: please click the Correct or helpful if this post is helpful. Thank you!
-----------------------------------------------------------------------------------------------------------------------