aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/pbx.h
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2006-07-08 02:24:07 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2006-07-08 02:24:07 +0000
commita82143962ae68df80876a7fabd7c1fe2d18e8da9 (patch)
treeec518bd7b27a9f005244e746dcaa79c215c85745 /include/asterisk/pbx.h
parent9552ca15733ae21b49c19ebc35c641b84418daf4 (diff)
Support hold/unhold in Zap, update IAX2 parser to know about modern commands, forward hold/unhold in dial, add hold device state
and implement holding in the SLA. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@37318 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/pbx.h')
-rw-r--r--include/asterisk/pbx.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asterisk/pbx.h b/include/asterisk/pbx.h
index 08949a71d..8212d7cc0 100644
--- a/include/asterisk/pbx.h
+++ b/include/asterisk/pbx.h
@@ -52,6 +52,7 @@ enum ast_extension_states {
AST_EXTENSION_BUSY = 1 << 1, /*!< All devices BUSY */
AST_EXTENSION_UNAVAILABLE = 1 << 2, /*!< All devices UNAVAILABLE/UNREGISTERED */
AST_EXTENSION_RINGING = 1 << 3, /*!< All devices RINGING */
+ AST_EXTENSION_ONHOLD = 1 << 4, /*!< All devices ONHOLD */
};