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
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
25 *---------------------------------------------------------------------------
27 * printing cause values
28 * ---------------------
30 * $Id: pcause_1tr6.c,v 1.4 2009/04/16 05:56:33 lukem Exp $
34 * last edit-date: [Mon Dec 13 21:56:03 1999]
36 *---------------------------------------------------------------------------*/
39 #include "pcause_1tr6.h"
42 print_cause_1tr6(unsigned char code
)
44 static char error_message
[120];
49 case CAUSE_1TR6_SHUTDN
:
50 e
= "normal D-channel shutdown";
54 e
= "invalid call reference value";
58 e
= "bearer service not implemented";
61 case CAUSE_1TR6_CIDNE
:
62 e
= "call identity does not exist";
66 e
= "call identity in use";
70 e
= "no channel available";
74 e
= "requested facility not implemented";
78 e
= "requested facility not subscribed";
82 e
= "outgoing calls barred";
86 e
= "user access busy";
89 case CAUSE_1TR6_NECUG
:
90 e
= "non existent CUG";
93 case CAUSE_1TR6_NECUG1
:
94 e
= "non existent CUG";
98 e
= "kommunikationsbeziehung als SPV nicht erlaubt";
102 e
= "destination not obtainable";
106 e
= "number changed";
114 e
= "no user responding";
122 e
= "incoming calls barred";
130 e
= "network congestion";
134 e
= "remote user initiated";
138 e
= "local procedure error";
142 e
= "remote procedure error";
146 e
= "remote user suspended";
150 e
= "remote user resumed";
153 case CAUSE_1TR6_UIDL
:
154 e
= "user info discharded locally";
158 e
= "UNKNOWN error occurred";
162 sprintf(error_message
, "0x%02x: %s", code
& 0x7f, e
);
163 return(error_message
);