登录 注册
当前位置:主页 > 资源下载 > 10 > 实现ping功能的计算机网络源程序

实现ping功能的计算机网络源程序

  • 更新:2024-08-13 22:58:50
  • 大小:6KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:网络基础 - 网络技术
  • 格式:TXT

资源介绍

实现PING功能的源程序 下面是部分程序 #include #include #include #include #include #pragma comment(lib,"Ws2_32.lib")//Winsock的lib库 //icmp包结构 typedef struct _ICMPPACK { unsigned char icmp_type; //消息类型 unsigned char icmp_code; //清息代码 unsigned short icmp_checksum; //16位效验 unsigned short icmp_id;//用来唯一标识些请求的ID号 unsigned short icmp_sequence; //序列号 unsigned long icmp_timestamp; //时间戳 }ICMPPACK, *PICMPPACK;