阅读:1930回复:1
一个 UDP 数据包的IP头长度应该怎么计算??
好久没来了。问个问题。给2分~~:))
一个 UDP 数据包的IP头长度应该怎么计算?? nHeaderLength = pIpHeader->HeaderLength * HEADER_LENGTH_MULTIPLE; 还是 nHeaderLength = GET_IP_HEADER_LENGTH( pIpHeader->VersionAndHeaderLength); ???? 在线等哦。 :D |
|
|
沙发#
发布于:2003-05-03 18:15
应该是nHeaderLength = pIpHeader->HeaderLength*4;
通常是20字节(如果没有option),也就是一般pIpHeader->HeaderLength为5. |
|