xref: /original-bsd/sys/netiso/cltp_var.h (revision ee3339a3)
1 /*
2  * Copyright (c) 1989 Regents of the University of California.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted
6  * provided that the above copyright notice and this paragraph are
7  * duplicated in all such forms and that any documentation,
8  * advertising materials, and other materials related to such
9  * distribution and use acknowledge that the software was developed
10  * by the University of California, Berkeley.  The name of the
11  * University may not be used to endorse or promote products derived
12  * from this software without specific prior written permission.
13  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
16  *
17  *	@(#)cltp_var.h	7.2 (Berkeley) 01/16/90
18  */
19 
20 #define UD_TPDU_type	0x40	/* packet type */
21 
22 #define CLTPOVAL_SRC	0xc1	/* Source TSAP -- required */
23 #define CLTPOVAL_DST	0xc2	/* Destination TSAP -- required */
24 #define CLTPOVAL_CSM	0xc3	/* Checksum parameter -- optional */
25 
26 struct	cltpstat {
27 	int	cltps_hdrops;
28 	int	cltps_badsum;
29 	int	cltps_badlen;
30 	int	cltps_noport;
31 	int	cltps_ipackets;
32 	int	cltps_opackets;
33 };
34 
35 #ifdef KERNEL
36 struct	isopcb cltb;
37 struct	cltpstat cltpstat;
38 #endif
39