{
struct ast_sip_aor *aor = obj;
const char *aor_id = ast_sorcery_object_get_id(aor);
- struct ast_sip_contact *contact;
- char contact_id[strlen(aor_id) + strlen(var->value) + 2 + 1];
+ char *contacts = ast_strdupa(var->value);
+ char *contact_uri;
- if (ast_sip_push_task_synchronous(NULL, permanent_contact_validate, (char *) var->value)) {
- ast_log(LOG_ERROR, "Permanent URI on aor '%s' with contact '%s' failed to parse\n",
- aor_id, var->value);
- return -1;
- }
+ while ((contact_uri = strsep(&contacts, ","))) {
+ struct ast_sip_contact *contact;
+ char contact_id[strlen(aor_id) + strlen(contact_uri) + 2 + 1];
+
+ if (ast_sip_push_task_synchronous(NULL, permanent_contact_validate, contact_uri)) {
+ ast_log(LOG_ERROR, "Permanent URI on aor '%s' with contact '%s' failed to parse\n",
+ ast_sorcery_object_get_id(aor), contact_uri);
+ return -1;
+ }
- if (!aor->permanent_contacts) {
- aor->permanent_contacts = ao2_container_alloc_list(AO2_ALLOC_OPT_LOCK_NOLOCK,
- AO2_CONTAINER_ALLOC_OPT_DUPS_REJECT, permanent_uri_sort_fn, NULL);
if (!aor->permanent_contacts) {
+ aor->permanent_contacts = ao2_container_alloc_list(AO2_ALLOC_OPT_LOCK_NOLOCK,
+ AO2_CONTAINER_ALLOC_OPT_DUPS_REJECT, permanent_uri_sort_fn, NULL);
+ if (!aor->permanent_contacts) {
+ return -1;
+ }
+ }
+
+ snprintf(contact_id, sizeof(contact_id), "%s@@%s", aor_id, contact_uri);
+ contact = ast_sorcery_alloc(ast_sip_get_sorcery(), "contact", contact_id);
+ if (!contact) {
return -1;
}
- }
- snprintf(contact_id, sizeof(contact_id), "%s@@%s", aor_id, var->value);
- contact = ast_sorcery_alloc(ast_sip_get_sorcery(), "contact", contact_id);
- if (!contact) {
- return -1;
+ ast_string_field_set(contact, uri, contact_uri);
+ ao2_link(aor->permanent_contacts, contact);
+ ao2_ref(contact, -1);
}
- ast_string_field_set(contact, uri, var->value);
- ao2_link(aor->permanent_contacts, contact);
- ao2_ref(contact, -1);
return 0;
}