From: Olle Johansson Date: Tue, 19 Apr 2011 08:22:18 +0000 (+0000) Subject: Add explanation of strange flag setup in app_meetme (stolen from Mark's message to... X-Git-Tag: 11.0.0-beta1~1708 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0622568f15b5aae869297db0c90c64e51ffb9857;p=thirdparty%2Fasterisk.git Add explanation of strange flag setup in app_meetme (stolen from Mark's message to asterisk-dev) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@314158 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_meetme.c b/apps/app_meetme.c index c9c491847e..dec02d1d74 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 {