I've backported some features from opensips. - reverse alias lookup function flag - use_domain moved from global parameter to a function flag (defaults to yes) - New function alias_db_find uses source and destination PV instead of ruri You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/823
-- Commit Summary --
* alias_db: Add reverse lookup flag to alias_db_lookup * alias_db: Remove module parameter use_domain, and add function flag to alias_db_lookup * alias_db: Cleanup and prepare alias_db_lookup for new function * alias_db: New function alias_db_find
-- File Changes --
M modules/alias_db/README (130) M modules/alias_db/alias_db.c (117) M modules/alias_db/alias_db.h (1) M modules/alias_db/alookup.c (170) M modules/alias_db/alookup.h (7) M modules/alias_db/api.h (4) M modules/alias_db/doc/alias_db_admin.xml (116)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/823.patch https://github.com/kamailio/kamailio/pull/823.diff
I would like to discuss more about the removal of use_domain parameter. It is a common parameter name across many modules and it is a easy way to turn on/off multi-domain support (even done also for alias_db in default kamailio.cfg).
I would like a coherent solution, like either removing this mod param everywhere or still keep it and also allow the per-function option to enable/disable.
Moreover, changing the default in using the domain is going to break compatibility may result in unexpected behaviour without prior visible notice, as people can reuse an old config without use_domain parameter set, so no error is triggered, but behaviour is changed. So I think the default should be without domain (this is the default across kamailio modules) and a flag to enable domain based lookup.
Keeping the use_domain won't change much the patch, the flags need to be initialized based on it:
``` if(use_domain) { flags |= **domain_lookup_flag** } ```
Travis reports that the inter-module API was broken -- app_lua doesn't compile as the function prototype for alias db lookup was changed. This is an easy fix, I can take care of.
Thanks, I will add use_domain again after the weekend.
@khoegh pushed 2 commits.
456941e alias_db: Re-add module parameter use_domain c1e36d0 alias_db: Add flag to use domain to alias_db_lookup/alias_db_find
I re-added use_domain module parameter and added option "u" to use domain on alias_db_lookup/alias_db_find. Will you fix the API, thanks.
Closed #823.
I pushed the commit that combines this pull requests with some refactoring of the internals not to break the inter-module api as well as use straight flag meaning for domain lookup, instead of negative meaning.
It should not affect use from config, but testing would be good to do to be sure.
I did some testing and it seems to work as expected. Thanks.