mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-01 19:43:03 +00:00
Use proper values for 64-bit option flags.
Also, reusing bits es no bueno, so change the value of a duplicate. (issue ASTERISK-18239) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@331578 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -604,12 +604,12 @@ enum {
|
||||
CONFFLAG_KICK_CONTINUE = (1 << 28),
|
||||
CONFFLAG_DURATION_STOP = (1 << 29),
|
||||
CONFFLAG_DURATION_LIMIT = (1 << 30),
|
||||
/*! Do not write any audio to this channel until the state is up. */
|
||||
CONFFLAG_NO_AUDIO_UNTIL_UP = (1 << 31),
|
||||
};
|
||||
|
||||
/* !If set play an intro announcement at start of conference */
|
||||
#define CONFFLAG_INTROMSG ((uint64_t)1 << 32)
|
||||
/*! Do not write any audio to this channel until the state is up. */
|
||||
#define CONFFLAG_NO_AUDIO_UNTIL_UP (1UL << 31)
|
||||
/*! If set play an intro announcement at start of conference */
|
||||
#define CONFFLAG_INTROMSG (1UL << 32)
|
||||
|
||||
enum {
|
||||
OPT_ARG_WAITMARKED = 0,
|
||||
|
||||
Reference in New Issue
Block a user