mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-08 10:58:15 +00:00
revert incorrect fix for bug #6048 from revision 7709
put in correct (simpler) fix add doxygen docs for channel spy 'state' values git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@7740 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -30,9 +30,10 @@ extern "C" {
|
||||
#include "asterisk/linkedlists.h"
|
||||
|
||||
enum chanspy_states {
|
||||
CHANSPY_NEW = 0,
|
||||
CHANSPY_RUNNING = 1,
|
||||
CHANSPY_DONE = 2,
|
||||
CHANSPY_NEW = 0, /*!< spy not yet operating */
|
||||
CHANSPY_RUNNING = 1, /*!< normal operation, spy is still operating */
|
||||
CHANSPY_DONE = 2, /*!< spy is stopped and already removed from channel */
|
||||
CHANSPY_STOP = 3, /*!< spy requested to stop, still attached to channel */
|
||||
};
|
||||
|
||||
enum chanspy_flags {
|
||||
|
||||
Reference in New Issue
Block a user