mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-26 03:16:18 +00:00
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 <goldsimon@gmx.de>
This commit is contained in:
parent
b9b74b2d92
commit
58f928a181
@ -9,10 +9,10 @@
|
|||||||
*
|
*
|
||||||
* This is a simple performance measuring client/server to check your bandwith using
|
* This is a simple performance measuring client/server to check your bandwith using
|
||||||
* iPerf2 on a PC as server/client.
|
* 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:
|
* @todo:
|
||||||
* - implement UDP mode and IPv6
|
* - implement UDP mode
|
||||||
* - protect combined sessions handling (via 'related_master_state') against reallocation
|
* - protect combined sessions handling (via 'related_master_state') against reallocation
|
||||||
* (this is a pointer address, currently, so if the same memory is allocated again,
|
* (this is a pointer address, currently, so if the same memory is allocated again,
|
||||||
* session pairs (tx/rx) can be confused on reallocation)
|
* session pairs (tx/rx) can be confused on reallocation)
|
||||||
@ -56,7 +56,7 @@
|
|||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
/* Currently, only TCP is implemented (does iperf support IPv6 anyway?) */
|
/* Currently, only TCP is implemented */
|
||||||
#if LWIP_TCP && LWIP_CALLBACK_API
|
#if LWIP_TCP && LWIP_CALLBACK_API
|
||||||
|
|
||||||
/** Specify the idle timeout (in seconds) after that the test fails */
|
/** Specify the idle timeout (in seconds) after that the test fails */
|
||||||
|
Loading…
Reference in New Issue
Block a user