aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-23 04:49:31 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-23 04:49:31 +0000
commit75cd5c6a83d8ce4be3c0a397cf3c852a74d6ac51 (patch)
tree11d41184f1b49b0ac11bbc73028ba980008360f7 /include
parent68fecc663d3d5b3b83cf0a793bdffe1df9084e88 (diff)
Handle ringing (early) state properly on SIP
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@29619 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/devicestate.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/asterisk/devicestate.h b/include/asterisk/devicestate.h
index 1892ab51b..3c7f5b40e 100644
--- a/include/asterisk/devicestate.h
+++ b/include/asterisk/devicestate.h
@@ -41,6 +41,8 @@ extern "C" {
#define AST_DEVICE_UNAVAILABLE 5
/*! Device is ringing */
#define AST_DEVICE_RINGING 6
+/*! Device is ringing *and* in use */
+#define AST_DEVICE_RINGINUSE 7
typedef int (*ast_devstate_cb_type)(const char *dev, int state, void *data);