C + + Computing ICMP header checksum instance _c language

Source: Internet
Author: User

This article describes the C + + computing ICMP header checksum method, share for everyone to reference. The specific implementation code is as follows:

Copy Code code as follows:
USHORT Checksum (ushort* buff, int nsize)
{
unsigned long cksum=0;
Add the data to the cksum in Word units
while (Nsize > 1)
{
Cksum + = *buff++;
Nsize-= sizeof (USHORT);
}

If it is odd, extend the last word to two words, then add
if (nsize)
{
Cksum + = * (uchar*) buff;
}
Add the high 16 bits of the cksum to the lower 16 bits, and get the checksum after the inverse
Cksum = (cksum>>16) + (CKSUM&&0XFFFF);
Cksum + = (cksum>>16);
Return (USHORT) (~cksum);
}

I hope this article will help you with the C + + program design.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.