Module: kamailio
Branch: master
Commit: 46e9963e07a44077184ac503cc72ff9d57c532d0
URL: https://github.com/kamailio/kamailio/commit/46e9963e07a44077184ac503cc72ff9…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2023-02-08T11:01:27+01:00
modules: readme files regenerated - uac ... [skip ci]
---
Modified: src/modules/uac/README
---
Diff: https://github.com/kamailio/kamailio/commit/46e9963e07a44077184ac503cc72ff9…
Patch: https://github.com/kamailio/kamailio/commit/46e9963e07a44077184ac503cc72ff9…
---
diff --git a/src/modules/uac/README b/src/modules/uac/README
index f87187cf9a..652344958a 100644
--- a/src/modules/uac/README
+++ b/src/modules/uac/README
@@ -828,7 +828,8 @@ uac_restore_to();
format. The parameter can be a static integer or a variable holding an
integer value.
- This function can be used from FAILURE_ROUTE.
+ This function can be used from FAILURE_ROUTE and BRANCH_FAILURE_ROUTE
+ event route.
Example 1.31. uac_auth usage
...
@@ -872,7 +873,8 @@ failure_route[TRUNKAUTH] {
format. The parameter can be a static integer or a variable holding an
integer value.
- This function can be used from FAILURE_ROUTE.
+ This function can be used from FAILURE_ROUTE and BRANCH_FAILURE_ROUTE
+ event route.
Example 1.32. uac_auth_mode usage
...
<!-- 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
- [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 -->
- [x] PR should be backported to stable branches
- [x] Tested changes locally
- [ ] Related to issue #XXXX (replace XXXX with an open issue number)
#### Description
Adds the possibility to call uac_auth* functions from the t_branch_on_failure event route
Useful in case of MID_REGISTRAR implementation, especially when REGISTER forked to multiple registrars and each one requests authentication requests separately
Result example:
![image](https://user-images.githubusercontent.com/8499399/216847091-17f8b9f0-1a08-47d1-89ee-978007cef36b.png)
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/3360
-- Commit Summary --
* uac: allow uac_auth* functions call from t_on_branch_failure event route
-- File Changes --
M src/modules/uac/doc/uac_admin.xml (4)
M src/modules/uac/uac.c (9)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/3360.patchhttps://github.com/kamailio/kamailio/pull/3360.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3360
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/pull/3360(a)github.com>
https://kamailio.org/docs/db-tables/kamailio-db-devel.html#idm9040 contains:
* thay instead of they, (UID_AUTH_DB Module)
* `,if` without comma in between (in UAC Module)
* for table "uacreg" column realm is described as “Remote username”, it should be Remote realm
For table dbaliases indexes contains:
* alias_user_idx on column alias_username
* alias_idx composite index on columns alias_username and alias_domain
I would say the composite index will also be used on queries only on the alias_username column, so the index alias_user_idx is redundant and should be deleted.
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/3361
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/issues/3361(a)github.com>
I run Kamailio with
```
log_stderror=yes
/* LOG Levels: 3=DBG, 2=INFO, 1=NOTICE, 0=WARN, -1=ERR, ... */
debug=-1
```
and inspect the output. Some messages from the websocket module are logged repeatedly at ERROR-level, but they are in no way errors. This changes moves such periodially logged no-error messages to debug-level INFO.
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/3349
-- Commit Summary --
* websocket: move some logging from ERROR to INFO
-- File Changes --
M src/modules/websocket/doc/websocket_admin.xml (2)
M src/modules/websocket/utf8_decode.h (2)
M src/modules/websocket/ws_frame.c (6)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/3349.patchhttps://github.com/kamailio/kamailio/pull/3349.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3349
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/pull/3349(a)github.com>