1# Private config options for this sample app
2
3# Copyright (c) 2019 Intel Corporation
4# SPDX-License-Identifier: Apache-2.0
5
6mainmenu "Networking dumb-http-server-mt sample application"
7
8config NET_SAMPLE_NUM_HANDLERS
9	int "How many connections to serve at the same time"
10	default 2
11	help
12	  Each connection is served by a thread which needs
13	  memory. Only increase the value here if really needed.
14
15config NET_SAMPLE_SERVE_LARGE_FILE
16	bool "Send large file to peer when queried"
17	help
18	  If set, then send 100KB file to peer. Default is to send
19	  a 2KB file to peer.
20
21source "Kconfig.zephyr"
22