summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorzuul <zuul@gerrit.asterisk.org>2016-08-09 16:19:13 -0500
committerGerrit Code Review <gerrit2@gerrit.digium.api>2016-08-09 16:19:13 -0500
commit5a5b949333ca9d5f2befc2c07fb5f376dbd05ec0 (patch)
tree2e6954ff9fb4a8f4ff1246e9dd7b8f6731dd37ce /include
parent926c1c72bd83d58a43b3598c694b825ad1d04483 (diff)
parenta06a1af0eb17428f5b929e1b6b76854a21a84500 (diff)
Merge "res_pjsip_mwi: fix unsolicited mwi blocks PJSIP stack" into 13
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/res_pjsip.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/include/asterisk/res_pjsip.h b/include/asterisk/res_pjsip.h
index b94546bbc..72a2ff351 100644
--- a/include/asterisk/res_pjsip.h
+++ b/include/asterisk/res_pjsip.h
@@ -2463,6 +2463,32 @@ int ast_sip_register_supplement(struct ast_sip_supplement *supplement);
void ast_sip_unregister_supplement(struct ast_sip_supplement *supplement);
/*!
+ * \brief Retrieve the global MWI taskprocessor high water alert trigger level.
+ *
+ * \since 13.12.0
+ *
+ * \retval the system MWI taskprocessor high water alert trigger level
+ */
+unsigned int ast_sip_get_mwi_tps_queue_high(void);
+
+/*!
+ * \brief Retrieve the global MWI taskprocessor low water clear alert level.
+ *
+ * \since 13.12.0
+ *
+ * \retval the system MWI taskprocessor low water clear alert level
+ */
+int ast_sip_get_mwi_tps_queue_low(void);
+
+/*!
+ * \brief Retrieve the global setting 'disable sending unsolicited mwi on startup'.
+ * \since 13.12.0
+ *
+ * \retval non zero if disable.
+ */
+unsigned int ast_sip_get_mwi_disable_initial_unsolicited(void);
+
+/*!
* \brief Retrieve the system debug setting (yes|no|host).
*
* \note returned string needs to be de-allocated by caller.