CONFIG_HTTP_SERVER_CONNECTIONS

Max number of concurrent HTTP server connections

Type: int

Help

This value determines how many simultaneous HTTP connections the HTTP server can serve. Note that only 1 HTTPS connection can be served at a time, so set CONFIG_NET_APP_SERVER_NUM_CONN and CONFIG_NET_TCP_BACKLOG_SIZE to 1 in that case.

Direct dependencies

HTTP_SERVER && HTTP && NETWORKING

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

Kconfig definition

At subsys/net/lib/http/Kconfig:45

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

Menu path: (top menu) → Networking → Network Protocols

config HTTP_SERVER_CONNECTIONS
    int
    prompt "Max number of concurrent HTTP server connections" if HTTP_SERVER && HTTP && NETWORKING
    default NET_APP_SERVER_NUM_CONN if HTTP_SERVER && HTTP && NETWORKING
    depends on HTTP_SERVER && HTTP && NETWORKING
    help
      This value determines how many simultaneous HTTP connections the
      HTTP server can serve. Note that only 1 HTTPS connection can be
      served at a time, so set CONFIG_NET_APP_SERVER_NUM_CONN and
      CONFIG_NET_TCP_BACKLOG_SIZE to 1 in that case.

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