zephyr/samples/net/sockets/dumb_http_server_mt/Kconfig
Jukka Rissanen f0edf73809 samples: net: dumb_http_server_mt: Add support for large file
If user sets CONFIG_NET_SAMPLE_SERVE_LARGE_FILE then the sample
will return 100KB file. By default 2KB file is returned.
This is used by the Docker based testing.

Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
2020-11-17 12:25:36 +02:00

22 lines
594 B
Plaintext

# Private config options for this sample app
# Copyright (c) 2019 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
mainmenu "Networking dumb-http-server-mt sample application"
config NET_SAMPLE_NUM_HANDLERS
int "How many connections to serve at the same time"
default 2
help
Each connection is served by a thread which needs
memory. Only increase the value here if really needed.
config NET_SAMPLE_SERVE_LARGE_FILE
bool "Send large file to peer when queried"
help
If set, then send 100KB file to peer. Default is to send
a 2KB file to peer.
source "Kconfig.zephyr"