<!-- Kamailio Pull Request Template -->
<!-- IMPORTANT: - for detailed contributing guidelines, read: https://github.com/kamailio/kamailio/blob/master/.github/CONTRIBUTING.md - pull requests must be done to master branch, unless they are backports of fixes from master branch to a stable branch - backports to stable branches must be done with 'git cherry-pick -x ...' - code is contributed under BSD for core and main components (tm, sl, auth, tls) - code is contributed GPLv2 or a compatible license for the other components - GPL code is contributed with OpenSSL licensing exception -->
#### Pre-Submission Checklist <!-- Go over all points below, and after creating the PR, tick all the checkboxes that apply --> <!-- All points should be verified, otherwise, read the CONTRIBUTING guidelines from above--> <!-- If you're unsure about any of these, don't hesitate to ask on sr-dev mailing list --> - [X] Commit message has the format required by CONTRIBUTING guide - [X] Commits are split per component (core, individual modules, libs, utils, ...) - [X] Each component has a single commit (if not, squash them into one commit) - [X] No commits to README files for modules (changes must be done to docbook files in `doc/` subfolder, the README file is autogenerated)
#### Type Of Change - [ ] Small bug fix (non-breaking change which fixes an issue) - [X] New feature (non-breaking change which adds new functionality) - [ ] Breaking change (fix or feature that would change existing functionality)
#### Checklist: <!-- Go over all points below, and after creating the PR, tick the checkboxes that apply --> - [ ] PR should be backported to stable branches - [ ] Tested changes locally - [ ] Related to issue #XXXX (replace XXXX with an open issue number)
#### Description <!-- Describe your changes in detail --> Some improvements related to DMQ node status: 1. Allow other modules that use DMQ to detect NOT_ACTIVE nodes via default response callback. Note that only internal dmq ping mechanism can set them back to DMQ_NODE_ACTIVE status. 2. Simplify node status and merge DMQ_NODE_PENDING + DMQ_NODE_TIMEOUT into DMQ_NODE_NOT_ACTIVE since those specific states were never used to be compared against. 3. Add new mod parameters which will control after how many fails the node should be moved to DMQ_NODE_NOT_ACTIVE state.
Under testing currently. Will update if any bugs found. You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/4182
-- Commit Summary --
* dmq: add default response callback * dmq: simplify node status * dmq: add two new modparams
-- File Changes --
M src/modules/dialog/dlg_dmq.c (16) M src/modules/dialog/dlg_dmq.h (3) M src/modules/dmq/dmq.c (4) M src/modules/dmq/dmq.h (2) M src/modules/dmq/dmq_funcs.c (6) M src/modules/dmq/dmqnode.c (70) M src/modules/dmq/dmqnode.h (9) M src/modules/dmq/doc/dmq_admin.xml (64) M src/modules/dmq/notification_peer.c (80) M src/modules/dmq/notification_peer.h (3) M src/modules/dmq_usrloc/usrloc_sync.c (12) M src/modules/dmq_usrloc/usrloc_sync.h (2) M src/modules/htable/ht_dmq.c (15) M src/modules/htable/ht_dmq.h (3) M src/modules/presence/presence_dmq.c (16) M src/modules/presence/presence_dmq.h (3)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/4182.patch https://github.com/kamailio/kamailio/pull/4182.diff
@stefan-mititelu-idt pushed 3 commits.
cdbb6628e326519a7abdeb891dc6a5cd0b77c61f dmq: add default response callback 598be4f5ebad273e008ce734e72516a556311cbc dmq: simplify node status 363a6d412e51e289faff91e1a701ebf152d3647a dmq: add two new modparams
@stefan-mititelu-idt pushed 1 commit.
cd308e1d203f1e5102b9368729c2f469033a9665 dmq: Few more update to the node status
stefan-mititelu-idt left a comment (kamailio/kamailio#4182)
Testing finished and looks ok with this last commit updates.
henningw left a comment (kamailio/kamailio#4182)
Thanks for the PR. I don't fully understand the commits. They are all prefixed with "dmq" but also changing htable and presence module. If this was done intentionally, please format the commit messages with the respective prefixes. There is also a format check error, but this seems to be related to the script, we can investigate later.
stefan-mititelu-idt left a comment (kamailio/kamailio#4182)
Yes, this is done intentionally.
I've added them under "dmq: " because: those changes in htable, presence, dialog, dmq_usrloc (e.g. remove locally defined dmq reponse callback and use NULL instead) are strictly coupled with the change in dmq (add default response callback to be used when those modules use NULL). Shall I still reformat the commit in this case?
linuxmaniac left a comment (kamailio/kamailio#4182)
Shall I still reformat the commit in this case?
Yes, we use prefix to track changes in modules easily from commit messages.
And while at it, can you please rebase?
@stefan-mititelu-idt pushed 5 commits.
5ca9bea9a831f4f8a2e6d5878864f973ecfa0e8d dmq: rework node status and add default response callback 4a45051d6fdb2a55dd6e852f6f1e95a82a6cac22 dialog: use NULL for dmq response callback 0f15b91823edce2909901af3dbf839c5b8302528 htable: use NULL for dmq response callback c56bef4ebf451f05e349532c3c11ed40abba9c9a dmq_usrloc: use NULL for dmq response callback d5597d409b693f87a15e1d06f0ee76e37b3308a6 presence: use NULL for dmq response callback