xref: /original-bsd/sys/netccitt/x25err.h (revision 3705696b)
1 /*
2  * Copyright (c) University of British Columbia, 1984
3  * Copyright (c) 1990, 1993
4  *	The Regents of the University of California.  All rights reserved.
5  *
6  * This code is derived from software contributed to Berkeley by
7  * the Laboratory for Computation Vision and the Computer Science Department
8  * of the University of British Columbia.
9  *
10  * %sccs.include.redist.c%
11  *
12  *	@(#)x25err.h	8.1 (Berkeley) 06/10/93
13  */
14 
15 /*
16  *
17  *  X.25 Reset and Clear errors and diagnostics.  These values are
18  *  returned in the u_error field of the u structure.
19  *
20  */
21 
22 #define EXRESET		100	/* Reset: call reset			*/
23 #define EXROUT		101	/* Reset: out of order			*/
24 #define EXRRPE		102	/* Reset: remote procedure error	*/
25 #define EXRLPE		103	/* Reset: local procedure error		*/
26 #define EXRNCG		104	/* Reset: network congestion		*/
27 
28 #define EXCLEAR		110	/* Clear: call cleared			*/
29 #define EXCBUSY 	111	/* Clear: number busy			*/
30 #define EXCOUT		112	/* Clear: out of order			*/
31 #define EXCRPE		113	/* Clear: remote procedure error	*/
32 #define EXCRRC		114	/* Clear: collect call refused		*/
33 #define EXCINV		115	/* Clear: invalid call			*/
34 #define EXCAB		116	/* Clear: access barred			*/
35 #define EXCLPE		117	/* Clear: local procedure error		*/
36 #define EXCNCG		118	/* Clear: network congestion		*/
37 #define EXCNOB		119	/* Clear: not obtainable		*/
38 
39