summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKevin Harwell <kharwell@digium.com>2015-03-17 18:34:12 +0000
committerKevin Harwell <kharwell@digium.com>2015-03-17 18:34:12 +0000
commit94fe4a91781e8f21936cb382c8ecedf1bead44c1 (patch)
tree946303852d6b9cc0f4884c3953cd522d825fd2a4 /include
parent1f428f25f0ffdfbde3bb4f5bec4e0a219023e6f0 (diff)
res_pjsip: Allow configuration of endpoint identifier query order
Updated some documentation stating that endpoint identifiers registered without a name are place at the front of the lookup list. Also renamed register method 'ast_sip_register_endpoint_identifier_by_name' to 'ast_sip_register_endpoint_identifier_with_name' ASTERISK-24840 Reported by: Mark Michelson git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/13@433031 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/res_pjsip.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/asterisk/res_pjsip.h b/include/asterisk/res_pjsip.h
index 2576bc3c1..70e9c3064 100644
--- a/include/asterisk/res_pjsip.h
+++ b/include/asterisk/res_pjsip.h
@@ -791,8 +791,8 @@ void ast_sip_unregister_outbound_authenticator(struct ast_sip_outbound_authentic
* \retval 0 Success
* \retval -1 Failure
*/
-int ast_sip_register_endpoint_identifier_by_name(struct ast_sip_endpoint_identifier *identifier,
- const char *name);
+int ast_sip_register_endpoint_identifier_with_name(struct ast_sip_endpoint_identifier *identifier,
+ const char *name);
/*!
* \brief Register a SIP endpoint identifier
@@ -811,6 +811,10 @@ int ast_sip_register_endpoint_identifier_by_name(struct ast_sip_endpoint_identif
* be sure to load individual endpoint identifier modules in the order you wish
* for them to be run in modules.conf
*
+ * \note endpoint identifiers registered using this method (no name specified)
+ * are placed at the front of the endpoint identifiers list ahead of any
+ * named identifiers.
+ *
* \param identifier The SIP endpoint identifier to register
* \retval 0 Success
* \retval -1 Failure