mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
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
This commit is contained in:
@@ -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 */
|
||||
@@ -884,13 +883,6 @@ struct outgoing_helper {
|
||||
struct ast_channel *parent_channel;
|
||||
};
|
||||
|
||||
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),
|
||||
|
Reference in New Issue
Block a user