No empty .Rs/.Re
[netbsd-mini2440.git] / usr.sbin / isdn / isdntrace / pcause_1tr6.c
blob7775ea25b9894890d589dc5969402c83e14a87e9
1 /*
2 * Copyright (c) 1997, 1999 Hellmuth Michaelis. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 * SUCH DAMAGE.
25 *---------------------------------------------------------------------------
27 * printing cause values
28 * ---------------------
30 * $Id: pcause_1tr6.c,v 1.4 2009/04/16 05:56:33 lukem Exp $
32 * $FreeBSD$
34 * last edit-date: [Mon Dec 13 21:56:03 1999]
36 *---------------------------------------------------------------------------*/
38 #include "trace.h"
39 #include "pcause_1tr6.h"
41 const char *
42 print_cause_1tr6(unsigned char code)
44 static char error_message[120];
45 const char *e;
47 switch (code)
49 case CAUSE_1TR6_SHUTDN:
50 e = "normal D-channel shutdown";
51 break;
53 case CAUSE_1TR6_ICRV:
54 e = "invalid call reference value";
55 break;
57 case CAUSE_1TR6_BSNI:
58 e = "bearer service not implemented";
59 break;
61 case CAUSE_1TR6_CIDNE:
62 e = "call identity does not exist";
63 break;
65 case CAUSE_1TR6_CIIU:
66 e = "call identity in use";
67 break;
69 case CAUSE_1TR6_NCA:
70 e = "no channel available";
71 break;
73 case CAUSE_1TR6_RFNI:
74 e = "requested facility not implemented";
75 break;
77 case CAUSE_1TR6_RFNS:
78 e = "requested facility not subscribed";
79 break;
81 case CAUSE_1TR6_OCB:
82 e = "outgoing calls barred";
83 break;
85 case CAUSE_1TR6_UAB:
86 e = "user access busy";
87 break;
89 case CAUSE_1TR6_NECUG:
90 e = "non existent CUG";
91 break;
93 case CAUSE_1TR6_NECUG1:
94 e = "non existent CUG";
95 break;
97 case CAUSE_1TR6_SPV:
98 e = "kommunikationsbeziehung als SPV nicht erlaubt";
99 break;
101 case CAUSE_1TR6_DNO:
102 e = "destination not obtainable";
103 break;
105 case CAUSE_1TR6_NC:
106 e = "number changed";
107 break;
109 case CAUSE_1TR6_OOO:
110 e = "out of order";
111 break;
113 case CAUSE_1TR6_NUR:
114 e = "no user responding";
115 break;
117 case CAUSE_1TR6_UB:
118 e = "user busy";
119 break;
121 case CAUSE_1TR6_ICB:
122 e = "incoming calls barred";
123 break;
125 case CAUSE_1TR6_CR:
126 e = "call rejected";
127 break;
129 case CAUSE_1TR6_NCO:
130 e = "network congestion";
131 break;
133 case CAUSE_1TR6_RUI:
134 e = "remote user initiated";
135 break;
137 case CAUSE_1TR6_LPE:
138 e = "local procedure error";
139 break;
141 case CAUSE_1TR6_RPE:
142 e = "remote procedure error";
143 break;
145 case CAUSE_1TR6_RUS:
146 e = "remote user suspended";
147 break;
149 case CAUSE_1TR6_RUR:
150 e = "remote user resumed";
151 break;
153 case CAUSE_1TR6_UIDL:
154 e = "user info discharded locally";
155 break;
157 default:
158 e = "UNKNOWN error occurred";
159 break;
162 sprintf(error_message, "0x%02x: %s", code & 0x7f, e);
163 return(error_message);
166 /* EOF */