aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_meetme.c
diff options
context:
space:
mode:
authoroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2011-04-19 08:22:18 +0000
committeroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2011-04-19 08:22:18 +0000
commitc51ffa49ec1a22e4e29513a46728a92eb012534d (patch)
treedabf6ce1cdf7c3372bf6fbc4c3f57402aba21ef5 /apps/app_meetme.c
parent55d93db9b222ce832556e90ab36113b99b689a58 (diff)
Add explanation of strange flag setup in app_meetme (stolen from Mark's message to asterisk-dev)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@314158 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_meetme.c')
-rw-r--r--apps/app_meetme.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index c9c491847..dec02d1d7 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -626,8 +626,9 @@ enum {
CONFFLAG_NO_AUDIO_UNTIL_UP = (1 << 31),
};
-/* !If set play an intro announcement at start of conference */
-#define CONFFLAG_INTROMSG ((uint64_t)1 << 32)
+/* These flags are defined separately because we ran out of bits that an enum can be used to represent.
+ If you add new flags, be sure to do it in the same way that CONFFLAG_INTROMSG is. */
+#define CONFFLAG_INTROMSG ((uint64_t)1 << 32) /*!< If set play an intro announcement at start of conference */
#define CONFFLAG_INTROUSER_VMREC ((uint64_t)1 << 33)
enum {