ping.h
上传用户:hepax88
上传日期:2007-01-03
资源大小:1101k
文件大小:1k
源码类别:

TCP/IP协议栈

开发平台:

Visual C++

  1. #ifndef _PING_H
  2. #define _PING_H
  3. #ifndef _SESSION_H
  4. #include "session.h"
  5. #endif
  6. struct ping {
  7. struct session *sp;
  8. int s; /* Socket for pinging */
  9. int32 target; /* Starting target IP address */
  10. int incflag; /* If true, increment target after each ping */
  11. int32 sent; /* Total number of pings sent */
  12. int32 srtt; /* Smoothed round trip time */
  13. int32 mdev; /* Mean deviation */
  14. int32 maxrtt; /* Maximum rtt */
  15. int32 minrtt; /* Minimum rtt */
  16. int32 responses; /* Total number of responses */
  17. int32 interval; /* Inter-ping interval, ticks */
  18. uint16 len; /* Length of data portion of ping */
  19. };
  20. /* In ping.c: */
  21. void echo_proc(int32 source,int32 dest,struct icmp *icmp,struct mbuf **bpp);
  22. int pingem(int s,int32 target,uint16 seq,uint16 id,uint16 len);
  23. #endif /* _PING_H */