From 58f928a181646c67bdd8fc4b2601b211b2b4512e Mon Sep 17 00:00:00 2001 From: Simon Goldschmidt Date: Fri, 22 Jun 2018 06:39:04 +0200 Subject: [PATCH] lwiperf: remove the comments that this is IPv4 only IPv6 works (tested against iperf version 2.0.9 on linux) Signed-off-by: Simon Goldschmidt --- src/apps/lwiperf/lwiperf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/apps/lwiperf/lwiperf.c b/src/apps/lwiperf/lwiperf.c index 18d4d76b..dbec4dae 100644 --- a/src/apps/lwiperf/lwiperf.c +++ b/src/apps/lwiperf/lwiperf.c @@ -9,10 +9,10 @@ * * This is a simple performance measuring client/server to check your bandwith using * iPerf2 on a PC as server/client. - * It is currently a minimal implementation providing an IPv4 TCP client/server only. + * It is currently a minimal implementation providing a TCP client/server only. * * @todo: - * - implement UDP mode and IPv6 + * - implement UDP mode * - protect combined sessions handling (via 'related_master_state') against reallocation * (this is a pointer address, currently, so if the same memory is allocated again, * session pairs (tx/rx) can be confused on reallocation) @@ -56,7 +56,7 @@ #include -/* Currently, only TCP is implemented (does iperf support IPv6 anyway?) */ +/* Currently, only TCP is implemented */ #if LWIP_TCP && LWIP_CALLBACK_API /** Specify the idle timeout (in seconds) after that the test fails */