tcp_remove_all() (used in tcp test setup/teardown): handle tcp_bound_pcbs, too

This commit is contained in:
goldsimon 2017-09-05 22:20:44 +02:00
parent cf651e7e0f
commit 48c687ea84

View File

@ -33,6 +33,7 @@ void
tcp_remove_all(void)
{
tcp_remove(tcp_listen_pcbs.pcbs);
tcp_remove(tcp_bound_pcbs);
tcp_remove(tcp_active_pcbs);
tcp_remove(tcp_tw_pcbs);
fail_unless(MEMP_STATS_GET(used, MEMP_TCP_PCB) == 0);