标签:
IP数据包格式
0 4 8 16 31
|4位版本 | 4位首部长度 | 8位服务类型 | 16位总长度(字节数)|
|16位标识 | 3位标志 | 13位片偏移 |
|8位生存时间| 8位协议 | 16位首部校验和 |
|32位源IP地址|
|32位目的IP地址|
|选项(可无)|
|数据|
netinet/ip.h中定义ip:
struct ip
{
#if __BYTE_ORDER == __LITTLE_ENDIAN
unsigned int ip_hl:4; /* header length */
unsigned int ip_v:4; /* version */
#endif
#if __BYTE_ORDER == __BIG_ENDIAN
unsigned int ip_v:4; /* version */
unsigned int ip_hl:4; /* header length */
#endif
u_int8_t ip_tos; /* type of service */
u_short ip_len; /* total length */
u_short ip_id; /* identification */
u_short ip_off; /* fragment offset field */
#define IP_RF 0x8000 /* reserved fragment flag */
#define IP_DF 0x4000 /* dont fragment flag */
#define IP_MF 0x2000 /* more fragments flag */
#define IP_OFFMASK 0x1fff /* mask for fragmenting bits */
u_int8_t ip_ttl; /* time to live */
u_int8_t ip_p; /* protocol */
u_short ip_sum; /* checksum */
struct in_addr ip_src, ip_dst; /* source and dest address */
};
解析
IP数据包的首部长度和数据包长度都是变长的,但总是4字节的整数倍。
标签:
原文地址:http://www.cnblogs.com/embedded-linux/p/4986449.html