zephyr/samples/net/sockets/dumb_http_server_mt/Kconfig

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"