2021-01-21 17:31:15 +01:00
|
|
|
# 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
|
|
|
|
menu "CongURE congestion control abstraction"
|
|
|
|
depends on USEMODULE_CONGURE
|
|
|
|
|
2021-01-27 10:39:57 +01:00
|
|
|
rsource "abe/Kconfig"
|
2021-02-12 11:03:38 +01:00
|
|
|
rsource "mock/Kconfig"
|
2021-01-21 17:32:19 +01:00
|
|
|
rsource "quic/Kconfig"
|
2021-01-22 17:53:27 +01:00
|
|
|
rsource "reno/Kconfig"
|
2021-02-01 20:08:51 +01:00
|
|
|
rsource "test/Kconfig"
|
|
|
|
|
2021-01-21 17:31:15 +01:00
|
|
|
endmenu # CongURE congestion control abstraction
|
|
|
|
endif # !TEST_KCONFIG
|
|
|
|
|
|
|
|
if TEST_KCONFIG
|
|
|
|
menuconfig MODULE_CONGURE
|
|
|
|
bool "CongURE congestion control abstraction"
|
|
|
|
depends on TEST_KCONFIG
|
|
|
|
|
|
|
|
if MODULE_CONGURE
|
|
|
|
|
2021-01-27 10:39:57 +01:00
|
|
|
rsource "abe/Kconfig"
|
2021-02-12 11:03:38 +01:00
|
|
|
rsource "mock/Kconfig"
|
2021-01-21 17:32:19 +01:00
|
|
|
rsource "quic/Kconfig"
|
2021-01-22 17:53:27 +01:00
|
|
|
rsource "reno/Kconfig"
|
2021-02-01 20:08:51 +01:00
|
|
|
rsource "test/Kconfig"
|
|
|
|
|
2021-01-21 17:31:15 +01:00
|
|
|
endif # MODULE_CONGURE
|
|
|
|
endif # TEST_KCONFIG
|