Module: kamailio Branch: 6.0 Commit: 00544a66aad09faf345d54bef7f464f2749ef548 URL: https://github.com/kamailio/kamailio/commit/00544a66aad09faf345d54bef7f464f2...
Author: João Capucho capucho@jcapucho.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: 2025-03-20T07:17:09+01:00
pua_reginfo: handle_notify - fix AoR key parsing
- The AoR key generated by handle_notify no longer includes the domain of the AoR when usrloc use_domain isn't enabled
(cherry picked from commit b7e16294ae1bbfe8cc469facf59fc9e3960ff2a4)
---
Modified: src/modules/pua_reginfo/notify.c
---
Diff: https://github.com/kamailio/kamailio/commit/00544a66aad09faf345d54bef7f464f2... Patch: https://github.com/kamailio/kamailio/commit/00544a66aad09faf345d54bef7f464f2...
---
diff --git a/src/modules/pua_reginfo/notify.c b/src/modules/pua_reginfo/notify.c index a390a00f238..23b44caaee9 100644 --- a/src/modules/pua_reginfo/notify.c +++ b/src/modules/pua_reginfo/notify.c @@ -305,10 +305,10 @@ int process_body(str notify_body, udomain_t *domain)
if(reginfo_use_domain) { aor_key.s = uri; + aor_key.len = strlen(uri); } else { - aor_key.s = parsed_aor.user.s; + aor_key = parsed_aor.user; } - aor_key.len = strlen(aor_key.s); /* Now let's lock that domain for this AOR: */ ul.lock_udomain(domain, &aor_key); /* and retrieve the user-record for this user: */