summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2010-03-03 19:38:06 +0000
committerRichard Mudgett <rmudgett@digium.com>2010-03-03 19:38:06 +0000
commit73ef4b8dafe664c03b0b81be6e90ac97afa9c5f8 (patch)
tree371cf1d28a79ecab4a3313b6f3e86736e23977bb /include
parente8a99a9962212fcc7b503e3e1ea42f9e2eed223b (diff)
Removed cdrflags from ast_channel structure.
Only chan_dahdi set a value in cdrflags. Everyone else just copied it around the system. Noone cared about any value it may have contained. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@250565 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/channel.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/asterisk/channel.h b/include/asterisk/channel.h
index 0d7b869c9..8c3d27f98 100644
--- a/include/asterisk/channel.h
+++ b/include/asterisk/channel.h
@@ -725,7 +725,6 @@ struct ast_channel {
int fds[AST_MAX_FDS]; /*!< File descriptors for channel -- Drivers will poll on
* these file descriptors, so at least one must be non -1.
* See \arg \ref AstFileDesc */
- int cdrflags; /*!< Call Detail Record Flags */
int _softhangup; /*!< Whether or not we have been hung up... Do not set this value
* directly, use ast_softhangup() */
int fdno; /*!< Which fd had an event detected on */
@@ -885,13 +884,6 @@ struct outgoing_helper {
};
enum {
- AST_CDR_TRANSFER = (1 << 0),
- AST_CDR_FORWARD = (1 << 1),
- AST_CDR_CALLWAIT = (1 << 2),
- AST_CDR_CONFERENCE = (1 << 3),
-};
-
-enum {
/*! Soft hangup by device */
AST_SOFTHANGUP_DEV = (1 << 0),
/*! Soft hangup for async goto */