CONFIG_NET_APP_SERVER_NUM_CONN

Number of simultaneous incoming connections

Type: int

Help

Tells how many simultaneous incoming connections the server instance can support. The value of CONFIG_NET_TCP_BACKLOG_SIZE must be greater than or equal to CONFIG_NET_APP_SERVER_NUM_CONN.

Direct dependencies

NET_APP_SERVER && NET_APP && NETWORKING

(Includes any dependencies from if’s and menus.)

Defaults

Kconfig definition

At subsys/net/lib/app/Kconfig:31

Included via Kconfig:10Kconfig.zephyr:35subsys/Kconfig:22subsys/net/Kconfig:93subsys/net/lib/Kconfig:29

Menu path: (top menu) → Networking → Network Libraries → Network application API support [EXPERIMENTAL]

config NET_APP_SERVER_NUM_CONN
    int
    prompt "Number of simultaneous incoming connections" if NET_APP_SERVER && NET_APP && NETWORKING
    default 1 if NET_APP_SERVER && NET_APP && NETWORKING
    depends on NET_APP_SERVER && NET_APP && NETWORKING
    help
      Tells how many simultaneous incoming connections the server instance can
      support. The value of CONFIG_NET_TCP_BACKLOG_SIZE must be greater than
      or equal to CONFIG_NET_APP_SERVER_NUM_CONN.

(Definitions include propagated dependencies, including from if’s and menus.)