File: ipsum.h

package info (click to toggle)
kernel-source-2.0.35 2.0.35-3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 32,456 kB
  • ctags: 94,327
  • sloc: ansic: 587,014; asm: 26,388; makefile: 4,055; sh: 1,221; perl: 727; tcl: 408; cpp: 277; lisp: 211; awk: 134
file content (45 lines) | stat: -rw-r--r-- 901 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef __ASM_IPSUM_H
#define __ASM_IPSUM_H

/*
 *	This routine computes a UDP checksum. 
 */
extern inline unsigned short udp_check(struct udphdr *uh, int len, u32 saddr, u32 daddr)
{
	/* uhh.. eventually */
	return 0;
}

/*
 *	This routine computes a TCP checksum. 
 */
extern inline unsigned short tcp_check(struct tcphdr *th, int len, u32 saddr, u32 daddr)
{     
	/* uhh.. eventually */
	return 0;
}


/*
 * This routine does all the checksum computations that don't
 * require anything special (like copying or special headers).
 */

extern inline unsigned short ip_compute_csum(unsigned char * buff, int len)
{
	/* uhh.. eventually */
	return 0;
}

/*
 *	This is a version of ip_compute_csum() optimized for IP headers, which
 *	always checksum on 4 octet boundaries.
 */

static inline unsigned short ip_fast_csum(unsigned char * buff, int wlen)
{
	/* uhh.. eventually */
	return 0;
}

#endif