net: tcp2: Make new TCP stack the default

Enable the new TCP stack as a default one in order to get people
to use it before Zephyr 2.4 is released.

Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
This commit is contained in:
Jukka Rissanen 2020-07-28 21:01:25 +03:00 committed by Anas Nashif
parent f39fdc410d
commit 70dae094ba

View file

@ -378,19 +378,19 @@ config NET_TCP_RETRY_COUNT
choice
prompt "Select TCP stack"
depends on NET_TCP
default NET_TCP1
default NET_TCP2
help
Select the TCP stack implementation to use.
config NET_TCP1
bool "Current stable TCP stack"
help
The current TCP stack that has been in use since Zephyr 1.0.
config NET_TCP2
bool "Experimental TCP stack"
bool "New TCP stack"
help
Enable experimental TCP which is under development.
Enable new TCP stack for Zephyr 2.4
config NET_TCP1
bool "Legacy TCP stack"
help
The legacy TCP stack that has been in use since Zephyr 1.0.
endchoice