summaryrefslogtreecommitdiff
path: root/res/res_pjsip.c
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 /res/res_pjsip.c
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 'res/res_pjsip.c')
-rw-r--r--res/res_pjsip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/res/res_pjsip.c b/res/res_pjsip.c
index b56b3aec3..376a16e08 100644
--- a/res/res_pjsip.c
+++ b/res/res_pjsip.c
@@ -1972,7 +1972,7 @@ struct endpoint_identifier_list {
static AST_RWLIST_HEAD_STATIC(endpoint_identifiers, endpoint_identifier_list);
-int ast_sip_register_endpoint_identifier_by_name(struct ast_sip_endpoint_identifier *identifier,
+int ast_sip_register_endpoint_identifier_with_name(struct ast_sip_endpoint_identifier *identifier,
const char *name)
{
char *prev, *current, *identifier_order;
@@ -2054,7 +2054,7 @@ int ast_sip_register_endpoint_identifier_by_name(struct ast_sip_endpoint_identif
int ast_sip_register_endpoint_identifier(struct ast_sip_endpoint_identifier *identifier)
{
- return ast_sip_register_endpoint_identifier_by_name(identifier, NULL);
+ return ast_sip_register_endpoint_identifier_with_name(identifier, NULL);
}
void ast_sip_unregister_endpoint_identifier(struct ast_sip_endpoint_identifier *identifier)