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.

CC3100MOD: In CC3100 what is the Maximum Client connection on TCP server

Part Number: CC3100MOD
Other Parts Discussed in Thread: CC3100

Hi All,

I'm using CC3100. Right now i'm using one TCP server and 2 TCP client. 

But i want to know the max client on one TCP server.?

Regards,

Aravinth

  • Hi Aravinth,

    For unsecured TCP sockets, the limit is eight simultaneous TCP sockets. If you are in AP mode and asking about the number of clients that can connect to the AP, the CC3100 can only support one client.

    Best regards,
    Sarah
  • Hi Aravinth,

    As Sarah said that CC3100 supports 8 BSD sockets (that mean not only TCP also UDP). For example: if you have only one TCP server (that mean server on one port) you can server up to 7 server clients at one moment. For TCP server you need one BSD socket for listening and all other socket you can use for client connection in server (accept).

    Jan