mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
gnrc/tcp : Move GNRC_TCP_RTO_K to 'CONFIG_'
This commit is contained in:
parent
e42cc62edc
commit
27f9d2def6
@ -149,8 +149,8 @@ extern "C" {
|
|||||||
/**
|
/**
|
||||||
* @brief K value for RTO calculation, default is 4
|
* @brief K value for RTO calculation, default is 4
|
||||||
*/
|
*/
|
||||||
#ifndef GNRC_TCP_RTO_K
|
#ifndef CONFIG_GNRC_TCP_RTO_K
|
||||||
#define GNRC_TCP_RTO_K (4U)
|
#define CONFIG_GNRC_TCP_RTO_K (4U)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -388,7 +388,7 @@ int _pkt_setup_retransmit(gnrc_tcp_tcb_t *tcb, gnrc_pktsnip_t *pkt, const bool r
|
|||||||
tcb->rto = CONFIG_GNRC_TCP_RTO_LOWER_BOUND;
|
tcb->rto = CONFIG_GNRC_TCP_RTO_LOWER_BOUND;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
tcb->rto = tcb->srtt + _max(CONFIG_GNRC_TCP_RTO_GRANULARITY, GNRC_TCP_RTO_K * tcb->rtt_var);
|
tcb->rto = tcb->srtt + _max(CONFIG_GNRC_TCP_RTO_GRANULARITY, CONFIG_GNRC_TCP_RTO_K * tcb->rtt_var);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Loading…
Reference in New Issue
Block a user