码迷,mamicode.com
首页 > 其他好文 > 详细

模拟TCP通信协议

时间:2016-01-05 12:38:51      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

1.定义IP头部格式

2.定义数据校验协议

    public struct IP_Head
    {
        public char headlength ;
        public char version;
        public char tos;

        public short total_len;
        public short identifier;
        public char ttl;
        public char protocal;
        public short checknum;
        public long sourceIP;
        public long destIP;

    }

    public struct ICMP_Header
    {
        byte type;
        byte code;
        short cknum;
        short id;
        short seq;
    }

 

模拟TCP通信协议

标签:

原文地址:http://www.cnblogs.com/363546828/p/5101843.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!