1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/congure/abe/Kconfig

32 lines
817 B
Plaintext

# Copyright (c) 2021 Freie Universität Berlin
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
if !TEST_KCONFIG
menuconfig KCONFIG_USEMODULE_CONGURE_ABE
bool "Configure TCP-ABE-like congestion control"
depends on USEMODULE_CONGURE_ABE
help
Configure TCP-ABE-like congestion control via Kconfig.
if KCONFIG_USEMODULE_CONGURE_ABE
rsource "Kconfig.config"
endif # KCONFIG_USEMODULE_CONGURE_ABE
endif # !TEST_KCONFIG
if TEST_KCONFIG
menuconfig MODULE_CONGURE_ABE
bool "CongURE implementation of TCP ABE"
depends on MODULE_CONGURE
select MODULE_CONGURE_RENO_METHODS
if MODULE_CONGURE_ABE
rsource "Kconfig.config"
endif # MODULE_CONGURE_ABE
endif # TEST_KCONFIG