*/
AST_MUTEX_DEFINE_STATIC(chlock);
+const struct ast_cause {
+ int cause;
+ const char *desc;
+} causes[] = {
+ { AST_CAUSE_UNALLOCATED, "Unallocated (unassigned) number" },
+ { AST_CAUSE_NO_ROUTE_TRANSIT_NET, "No route to specified transmit network" },
+ { AST_CAUSE_NO_ROUTE_DESTINATION, "No route to destination" },
+ { AST_CAUSE_CHANNEL_UNACCEPTABLE, "Channel unacceptable" },
+ { AST_CAUSE_CALL_AWARDED_DELIVERED, "Call awarded and being delivered in an established channel" },
+ { AST_CAUSE_NORMAL_CLEARING, "Normal Clearing" },
+ { AST_CAUSE_USER_BUSY, "User busy" },
+ { AST_CAUSE_NO_USER_RESPONSE, "No user responding" },
+ { AST_CAUSE_NO_ANSWER, "User alerting, no answer" },
+ { AST_CAUSE_CALL_REJECTED, "Call Rejected" },
+ { AST_CAUSE_NUMBER_CHANGED, "Number changed" },
+ { AST_CAUSE_DESTINATION_OUT_OF_ORDER, "Destination out of order" },
+ { AST_CAUSE_INVALID_NUMBER_FORMAT, "Invalid number format" },
+ { AST_CAUSE_FACILITY_REJECTED, "Facility rejected" },
+ { AST_CAUSE_RESPONSE_TO_STATUS_ENQUIRY, "Response to STATus ENQuiry" },
+ { AST_CAUSE_NORMAL_UNSPECIFIED, "Normal, unspecified" },
+ { AST_CAUSE_NORMAL_CIRCUIT_CONGESTION, "Circuit/channel congestion" },
+ { AST_CAUSE_NETWORK_OUT_OF_ORDER, "Network out of order" },
+ { AST_CAUSE_NORMAL_TEMPORARY_FAILURE, "Temporary failure" },
+ { AST_CAUSE_SWITCH_CONGESTION, "Switching equipment congestion" },
+ { AST_CAUSE_ACCESS_INFO_DISCARDED, "Access information discarded" },
+ { AST_CAUSE_REQUESTED_CHAN_UNAVAIL, "Requested channel not available" },
+ { AST_CAUSE_PRE_EMPTED, "Pre-empted" },
+ { AST_CAUSE_FACILITY_NOT_SUBSCRIBED, "Facility not subscribed" },
+ { AST_CAUSE_OUTGOING_CALL_BARRED, "Outgoing call barred" },
+ { AST_CAUSE_INCOMING_CALL_BARRED, "Incoming call barred" },
+ { AST_CAUSE_BEARERCAPABILITY_NOTAUTH, "Bearer capability not authorized" },
+ { AST_CAUSE_BEARERCAPABILITY_NOTAVAIL, "Bearer capability not available" },
+ { AST_CAUSE_BEARERCAPABILITY_NOTIMPL, "Bearer capability not implemented" },
+ { AST_CAUSE_CHAN_NOT_IMPLEMENTED, "Channel not implemented" },
+ { AST_CAUSE_FACILITY_NOT_IMPLEMENTED, "Facility not implemented" },
+ { AST_CAUSE_INVALID_CALL_REFERENCE, "Invalid call reference value" },
+ { AST_CAUSE_INCOMPATIBLE_DESTINATION, "Incompatible destination" },
+ { AST_CAUSE_INVALID_MSG_UNSPECIFIED, "Invalid message unspecified" },
+ { AST_CAUSE_MANDATORY_IE_MISSING, "Mandatory information element is missing" },
+ { AST_CAUSE_MESSAGE_TYPE_NONEXIST, "Message type nonexist." },
+ { AST_CAUSE_WRONG_MESSAGE, "Wrong message" },
+ { AST_CAUSE_IE_NONEXIST, "Info. element nonexist or not implemented" },
+ { AST_CAUSE_INVALID_IE_CONTENTS, "Invalid information element contents" },
+ { AST_CAUSE_WRONG_CALL_STATE, "Message not compatible with call state" },
+ { AST_CAUSE_RECOVERY_ON_TIMER_EXPIRE, "Recover on timer expiry" },
+ { AST_CAUSE_MANDATORY_IE_LENGTH_ERROR, "Mandatory IE length error" },
+ { AST_CAUSE_PROTOCOL_ERROR, "Protocol error, unspecified" },
+ { AST_CAUSE_INTERWORKING, "Interworking, unspecified" },
+};
+
+
static int show_channeltypes(int fd, int argc, char *argv[])
{
#define FORMAT "%-10.10s %-50.50s %-12.12s\n"
return 0;
}
+/*--- ast_cause2str: Gives the string form of a given hangup cause */
+const char *ast_cause2str(int cause)
+{
+ int x;
+
+ for (x=0; x < sizeof(causes) / sizeof(causes[0]); x++)
+ if (causes[x].cause == cause)
+ return causes[x].desc;
+
+ return "Unknown";
+}
+
/*--- ast_state2str: Gives the string form of a given channel state */
char *ast_state2str(int state)
{
static int recordhistory = 0; /* Record SIP history. Off by default */
-static char global_musicclass[MAX_LANGUAGE] = ""; /* Global music on hold class */
+static char global_musicclass[MAX_MUSICCLASS] = ""; /* Global music on hold class */
#define DEFAULT_REALM "asterisk"
static char global_realm[MAXHOSTNAMELEN] = DEFAULT_REALM; /* Default realm */
static char regcontext[AST_MAX_EXTENSION] = ""; /* Context for auto-extensions */
char fromname[AST_MAX_EXTENSION]; /* Name to show in the user field */
char tohost[MAXHOSTNAMELEN]; /* Host we should put in the "to" field */
char language[MAX_LANGUAGE]; /* Default language for this call */
- char musicclass[MAX_LANGUAGE]; /* Music on Hold class */
+ char musicclass[MAX_MUSICCLASS]; /* Music on Hold class */
char rdnis[256]; /* Referring DNIS */
char theirtag[256]; /* Their tag */
char username[256]; /* [user] name */
char cid_name[80]; /* Caller ID name */
char accountcode[AST_MAX_ACCOUNT_CODE]; /* Account code */
char language[MAX_LANGUAGE]; /* Default language for this user */
- char musicclass[MAX_LANGUAGE]; /* Music on Hold class */
+ char musicclass[MAX_MUSICCLASS];/* Music on Hold class */
char useragent[256]; /* User agent in SIP request */
struct ast_codec_pref prefs; /* codec prefs */
ast_group_t callgroup; /* Call group */
int outgoinglimit; /* disabled */
char mailbox[AST_MAX_EXTENSION]; /* Mailbox setting for MWI checks */
char language[MAX_LANGUAGE]; /* Default language for prompts */
- char musicclass[MAX_LANGUAGE]; /* Music on Hold class */
+ char musicclass[MAX_MUSICCLASS];/* Music on Hold class */
char useragent[256]; /* User agent in SIP request (saved from registration) */
struct ast_codec_pref prefs; /* codec prefs */
int lastmsgssent;