Subversion Repositories planix.SVN

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
68 7u83 1
 
2
#ifndef NETINET_IL_H_
3
#define NETINET_IL_H_
4
 
5
struct ilhdr
6
{
7
	u_char	ilsum[2];	/* Checksum including header */
8
	u_char	illen[2];	/* Packet length */
9
	u_char	iltype;		/* Packet type */
10
	u_char	ilspec;		/* Special */
11
	u_char	ilsrc[2];	/* Src port */
12
	u_char	ildst[2];	/* Dst port */
13
	u_char	ilid[4];	/* Sequence id */
14
	u_char	ilack[4];	/* Acked sequence */
15
};
16
 
17
#endif