From d0145292aa5dd53cf836d0f9833e5b7f0b25927d Mon Sep 17 00:00:00 2001 From: Akshai M Date: Thu, 14 May 2020 16:10:44 +0530 Subject: [PATCH] gnrc/tcp : Move GNRC_TCP_MSS_MULTIPLICATOR to 'CONFIG_' --- sys/include/net/gnrc/tcp/config.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/include/net/gnrc/tcp/config.h b/sys/include/net/gnrc/tcp/config.h index 03a6d9a8c6..5953090cf1 100644 --- a/sys/include/net/gnrc/tcp/config.h +++ b/sys/include/net/gnrc/tcp/config.h @@ -79,15 +79,15 @@ extern "C" { /** * @brief MSS Multiplicator = Number of MSS sized packets stored in receive buffer */ -#ifndef GNRC_TCP_MSS_MULTIPLICATOR -#define GNRC_TCP_MSS_MULTIPLICATOR (1U) +#ifndef CONFIG_GNRC_TCP_MSS_MULTIPLICATOR +#define CONFIG_GNRC_TCP_MSS_MULTIPLICATOR (1U) #endif /** * @brief Default receive window size */ #ifndef GNRC_TCP_DEFAULT_WINDOW -#define GNRC_TCP_DEFAULT_WINDOW (GNRC_TCP_MSS * GNRC_TCP_MSS_MULTIPLICATOR) +#define GNRC_TCP_DEFAULT_WINDOW (GNRC_TCP_MSS * CONFIG_GNRC_TCP_MSS_MULTIPLICATOR) #endif /**