PingTest.h
上传用户:yyyd609
上传日期:2022-07-18
资源大小:183k
文件大小:1k
源码类别:

微处理器开发

开发平台:

C/C++

  1. /*****************************************************************************
  2. *                                                                             *
  3. *  以太网控制器测试模块                                                       *
  4. *                                                                             *
  5. *  该模块实现了基于以太网的ARP回应和ICMP回应                                  *
  6. *                                                                             *
  7. *****************************************************************************/
  8. #ifndef __PING_TEST__
  9. #define __PING_TEST__
  10. #include "71x_type.h"
  11. // 以太网物理地址类型
  12. typedef u16 ETH_ADDR[3];
  13. // IP地址类型
  14. typedef u32 IP_ADDR;
  15. // 本地IP地址
  16. extern IP_ADDR g_LocalIPAddr;
  17. // 以太网测试入口函数
  18. void PingTest_Input(void *buf, int len);
  19. #endif