aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-08-29 21:20:43 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-08-29 21:20:43 +0000
commitb4399f326407b63bba12fc5a235c0424eb91e32c (patch)
treed6533c8cfbea59acc3803a2eef501eb907ba1f56 /include
parentd5de83cadf765784b307a2e9a31179d0ac7c2aa9 (diff)
add one remaining bit of functionality to the features.conf applicationmap (from Matt Nicholson in Digium Express Services)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@41281 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/features.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/asterisk/features.h b/include/asterisk/features.h
index 2fb9e7a2b..db25e7d23 100644
--- a/include/asterisk/features.h
+++ b/include/asterisk/features.h
@@ -29,6 +29,7 @@
#define FEATURE_APP_ARGS_LEN 256
#define FEATURE_SNAME_LEN 32
#define FEATURE_EXTEN_LEN 32
+#define FEATURE_MOH_LEN 80 /* same as MAX_MUSICCLASS from channel.h */
/*! \brief main call feature structure */
struct ast_call_feature {
@@ -41,6 +42,7 @@ struct ast_call_feature {
unsigned int flags;
char app[FEATURE_APP_LEN];
char app_args[FEATURE_APP_ARGS_LEN];
+ char moh_class[FEATURE_MOH_LEN];
AST_LIST_ENTRY(ast_call_feature) feature_entry;
};