00001 /* 00002 * Asterisk -- A telephony toolkit for Linux. 00003 * 00004 * Internal Asterisk's hangup causes 00005 * 00006 * Copyright (C) 2003, Digium 00007 * 00008 * Martin Pycko <martinp@digium.com> 00009 * 00010 * This program is free software, distributed under the terms of 00011 * the GNU General Public License 00012 */ 00013 00014 #ifndef _ASTERISK_CAUSES_H 00015 #define _ASTERISK_CAUSES_H 00016 00017 #define AST_CAUSE_NOTDEFINED 0 00018 #define AST_CAUSE_NORMAL 1 00019 #define AST_CAUSE_BUSY 2 00020 #define AST_CAUSE_FAILURE 3 00021 #define AST_CAUSE_CONGESTION 4 00022 #define AST_CAUSE_UNALLOCATED 5 00023 00024 #endif