aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/causes.h
blob: c77905def7c500f22418c044719ef00e3ae66107 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * Asterisk -- A telephony toolkit for Linux.
 *
 * Internal Asterisk's hangup causes
 *
 * Copyright (C) 2003, Digium
 *
 * Martin Pycko <martinp@digium.com>
 *
 * This program is free software, distributed under the terms of
 * the GNU General Public License
 */

#ifndef _ASTERISK_CAUSES_H
#define _ASTERISK_CAUSES_H

#define AST_CAUSE_NOTDEFINED	0
#define AST_CAUSE_NORMAL	1
#define AST_CAUSE_BUSY		2
#define AST_CAUSE_FAILURE	3
#define AST_CAUSE_CONGESTION	4
#define AST_CAUSE_UNALLOCATED	5
#define AST_CAUSE_NOANSWER		6

#endif