InetStruct.cpp
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. ////////////////////////////////////////////////////////////////////////////////
  2. //  
  3. //  FileName    :   InetStruct.h
  4. //  Version     :   1.0
  5. //  Creater     :   Linsuyi
  6. //  Date        :   2002-01-09  15:50:32
  7. //  Comment     :   Internet structure used tcp/ip, source file (from RFC)
  8. //  
  9. ////////////////////////////////////////////////////////////////////////////////
  10. #include "Stdafx.h"
  11. #include "InetStruct.h"
  12. unsigned short inet_chksum(unsigned short *data, int len)
  13. {
  14.     register int nleft = len;
  15.     register int sum   = 0;
  16.     
  17.     register unsigned short *w = data;
  18.     register unsigned short answer;
  19.     
  20.     /*
  21.     *  Our algorithm is simple, using a 32 bit accumulator (sum),
  22.     *  we add sequential 16 bit words to it, and at the end, fold
  23.     *  back all the carry bits from the top 16 bits into the lower
  24.     *  16 bits.
  25.     */
  26.     while (nleft > 1)
  27.     {
  28.         sum += *w++;
  29.         nleft -= 2;
  30.     }
  31.     
  32.     /* mop up an odd byte, if necessary */
  33.     if (nleft == 1)
  34.     {
  35.         unsigned short u = 0;
  36.         
  37.         *(unsigned char *)(&u) = *(unsigned char *)w ;
  38.         sum += u;
  39.     }
  40.     
  41.     /*
  42.      * add back carry outs from top 16 bits to low 16 bits
  43.      */
  44.     sum = (sum >> 16) + (sum & 0xffff); /* add hi 16 to low 16 */
  45.     sum += (sum >> 16);         /* add carry */
  46.     answer = ~sum;         /* truncate to 16 bits */
  47.     
  48.     return (answer);
  49. }