git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7099 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale
2008-01-05 17:32:13 +00:00
parent f9fb469ae2
commit 698b1b1b56
5 changed files with 11 additions and 7 deletions
+3 -1
View File
@@ -629,6 +629,7 @@ CF_VIDEO = (1 << 22) - Channel has video
CF_EVENT_LOCK = (1 << 23) - Don't parse events
CF_RESET = (1 << 24) - Tell extension parser to reset
CF_ORIGINATING = (1 << 25) - Channel is originating
CF_STOP_BROADCAST = (1 << 26) - Signal to stop broadcast
</pre>
*/
@@ -658,7 +659,8 @@ typedef enum {
CF_VIDEO = (1 << 22),
CF_EVENT_LOCK = (1 << 23),
CF_RESET = (1 << 24),
CF_ORIGINATING = (1 << 25)
CF_ORIGINATING = (1 << 25),
CF_STOP_BROADCAST = (1 << 26),
} switch_channel_flag_t;