Convert sequence number to network byte order before sending it on the wire.

svn path=/trunk/; revision=22898
This commit is contained in:
Andrew Munger 2006-07-07 13:23:10 +00:00
parent 51cb8f8eac
commit 6f734d6123

View file

@ -489,7 +489,7 @@ static BOOL Ping(VOID)
Packet->Icmp.Type = ICMPMSG_ECHOREQUEST;
Packet->Icmp.Code = 0;
Packet->Icmp.Id = (USHORT)GetCurrentProcessId();
Packet->Icmp.SeqNum = (USHORT)CurrentSeqNum;
Packet->Icmp.SeqNum = htons((USHORT)CurrentSeqNum);
Packet->Icmp.Checksum = 0;
/* Timestamp is part of data area */