iperf_task.h 306 B

12345678910111213141516
  1. /*
  2. * iperf_task.c
  3. */
  4. #ifndef IPERF_TASK_H_
  5. #define IPERF_TASK_H_
  6. /* This function will start a task that will handl all IPERF requests from outside.
  7. Call it after the IP-stack is up and running. */
  8. #define ipconfigIPERF_HAS_TCP 1
  9. #define ipconfigIPERF_HAS_UDP 1
  10. void vIPerfInstall( void );
  11. #endif