summaryrefslogtreecommitdiff
path: root/include/asterisk/res_pjsip_pubsub.h
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2016-04-29 14:33:01 -0500
committerGerrit Code Review <gerrit2@gerrit.digium.api>2016-04-29 14:33:01 -0500
commitbc19d9a2b0361f1aa5b3f8426bacfaf1300a1193 (patch)
treea4acdbd0fe393ea01cd1747be31b86a9f12d1e9a /include/asterisk/res_pjsip_pubsub.h
parentd57847a7c792e0d12919e542076ef4818252fc39 (diff)
parent0b5292525cce32e9944b02b17748c4c7ec89ede3 (diff)
Merge "res_pjsip_exten_state: Check if body generator is available."
Diffstat (limited to 'include/asterisk/res_pjsip_pubsub.h')
-rw-r--r--include/asterisk/res_pjsip_pubsub.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/asterisk/res_pjsip_pubsub.h b/include/asterisk/res_pjsip_pubsub.h
index 94576d38b..4f9a7633a 100644
--- a/include/asterisk/res_pjsip_pubsub.h
+++ b/include/asterisk/res_pjsip_pubsub.h
@@ -649,6 +649,19 @@ int ast_sip_pubsub_generate_body_content(const char *content_type,
const char *content_subtype, struct ast_sip_body_data *data, struct ast_str **str);
/*!
+ * \brief Is a body generator registered for the given type/subtype.
+ * \since 14.0.0
+ *
+ * \param type The content type of the body
+ * \param subtype The content subtype of the body
+ *
+ * \note In "plain/text", "plain" is the type and "text" is the subtype.
+ *
+ * \retval non-zero if a generator is registered.
+ */
+int ast_sip_pubsub_is_body_generator_registered(const char *type, const char *subtype);
+
+/*!
* \since 13.0.0
* \brief Register a body generator with the pubsub core.
*