summaryrefslogtreecommitdiff
path: root/res/res_pjsip
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2017-11-20 16:48:23 -0600
committerGerrit Code Review <gerrit2@gerrit.digium.api>2017-11-20 16:48:23 -0600
commita2caade298f1c702b34c999ec9c5750cdbb7e508 (patch)
tree79f4889ea673e65af05a3591e5a0dbbdf82f8fa7 /res/res_pjsip
parent5db911bf7d4c1f9eff163eeaa1e34e39509e0a02 (diff)
parent6c53fb5d21a8c4e01eeb3b6815edcaeee120a274 (diff)
Merge "res_pjsip: Use sorcery prefix operation for contact lookup"
Diffstat (limited to 'res/res_pjsip')
-rw-r--r--res/res_pjsip/location.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/res/res_pjsip/location.c b/res/res_pjsip/location.c
index 0d7b3da31..299fdb722 100644
--- a/res/res_pjsip/location.c
+++ b/res/res_pjsip/location.c
@@ -82,16 +82,17 @@ static void aor_deleted_observer(const void *object)
{
const struct ast_sip_aor *aor = object;
const char *aor_id = ast_sorcery_object_get_id(object);
- /* Give enough space for ^ at the beginning and ;@ at the end, since that is our object naming scheme */
- char regex[strlen(aor_id) + 4];
+ /* Give enough space for ;@ at the end, since that is our object naming scheme */
+ size_t prefix_len = strlen(aor_id) + sizeof(";@") - 1;
+ char prefix[prefix_len + 1];
struct ao2_container *contacts;
if (aor->permanent_contacts) {
ao2_callback(aor->permanent_contacts, OBJ_NODATA | OBJ_MULTIPLE | OBJ_UNLINK, destroy_contact, NULL);
}
- snprintf(regex, sizeof(regex), "^%s;@", aor_id);
- if (!(contacts = ast_sorcery_retrieve_by_regex(ast_sip_get_sorcery(), "contact", regex))) {
+ sprintf(prefix, "%s;@", aor_id); /* Safe */
+ if (!(contacts = ast_sorcery_retrieve_by_prefix(ast_sip_get_sorcery(), "contact", prefix, prefix_len))) {
return;
}
/* Destroy any contacts that may still exist that were made for this AoR */
@@ -223,13 +224,13 @@ struct ao2_container *ast_sip_location_retrieve_aor_contacts_nolock(const struct
struct ao2_container *ast_sip_location_retrieve_aor_contacts_nolock_filtered(const struct ast_sip_aor *aor,
unsigned int flags)
{
- /* Give enough space for ^ at the beginning and ;@ at the end, since that is our object naming scheme */
- char regex[strlen(ast_sorcery_object_get_id(aor)) + 4];
+ /* Give enough space for ;@ at the end, since that is our object naming scheme */
+ size_t prefix_len = strlen(ast_sorcery_object_get_id(aor)) + sizeof(";@") - 1;
+ char prefix[prefix_len + 1];
struct ao2_container *contacts;
- snprintf(regex, sizeof(regex), "^%s;@", ast_sorcery_object_get_id(aor));
-
- if (!(contacts = ast_sorcery_retrieve_by_regex(ast_sip_get_sorcery(), "contact", regex))) {
+ sprintf(prefix, "%s;@", ast_sorcery_object_get_id(aor)); /* Safe */
+ if (!(contacts = ast_sorcery_retrieve_by_prefix(ast_sip_get_sorcery(), "contact", prefix, prefix_len))) {
return NULL;
}