root/include/net/checksum.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 /*
   2  * INET         An implementation of the TCP/IP protocol suite for the LINUX
   3  *              operating system.  INET is implemented using the  BSD Socket
   4  *              interface as the means of communication with the user level.
   5  *
   6  *              Checksumming functions for IP, TCP, UDP and so on
   7  *
   8  * Authors:     Jorge Cwik, <jorge@laser.satlink.net>
   9  *              Arnt Gulbrandsen, <agulbra@nvg.unit.no>
  10  *              Borrows very liberally from tcp.c and ip.c, see those
  11  *              files for more names.
  12  *
  13  *              This program is free software; you can redistribute it and/or
  14  *              modify it under the terms of the GNU General Public License
  15  *              as published by the Free Software Foundation; either version
  16  *              2 of the License, or (at your option) any later version.
  17  */
  18 #ifndef _CHECKSUM_H
  19 #define _CHECKSUM_H
  20 
  21 #include <asm/byteorder.h>
  22 #include <net/ip.h>
  23 #include <asm/checksum.h>
  24 
  25 #endif

/* [previous][next][first][last][top][bottom][index][help] */