Module: kamailio
Branch: master
Commit: d9445d60ea6432664447858dff3852be94c04196
URL: https://github.com/kamailio/kamailio/commit/d9445d60ea6432664447858dff3852b…
Author: �������������������� �������������������������������� <git-dpa(a)aegee.org>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-02-08T14:05:32+01:00
xhttp_prom: typo
---
Modified: src/modules/xhttp_prom/xhttp_prom.c
---
Diff: https://github.com/kamailio/kamailio/commit/d9445d60ea6432664447858dff3852b…
Patch: https://github.com/kamailio/kamailio/commit/d9445d60ea6432664447858dff3852b…
---
diff --git a/src/modules/xhttp_prom/xhttp_prom.c b/src/modules/xhttp_prom/xhttp_prom.c
index 74f83dce87..1c471d4b11 100644
--- a/src/modules/xhttp_prom/xhttp_prom.c
+++ b/src/modules/xhttp_prom/xhttp_prom.c
@@ -198,7 +198,7 @@ struct module_exports exports = {
* @brief Implementation of prom_fault function required by the management API.
*
* This function will be called whenever a management function
- * indicates that an error ocurred while it was processing the request. The
+ * indicates that an error occurred while it was processing the request. The
* function takes the reply code and reason phrase as parameters, these will
* be put in the body of the reply.
*
Module: kamailio
Branch: master
Commit: 17aec5c930e2681431c4da779cd24e3fc070b6eb
URL: https://github.com/kamailio/kamailio/commit/17aec5c930e2681431c4da779cd24e3…
Author: �������������������� �������������������������������� <git-dpa(a)aegee.org>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-02-08T14:05:32+01:00
siputis: typos
---
Modified: src/modules/siputils/chargingvector.c
Modified: src/modules/siputils/checks.c
Modified: src/modules/siputils/checks.h
Modified: src/modules/siputils/contact_ops.c
Modified: src/modules/siputils/doc/siputils_admin.xml
Modified: src/modules/siputils/siputils.c
---
Diff: https://github.com/kamailio/kamailio/commit/17aec5c930e2681431c4da779cd24e3…
Patch: https://github.com/kamailio/kamailio/commit/17aec5c930e2681431c4da779cd24e3…
---
diff --git a/src/modules/siputils/chargingvector.c b/src/modules/siputils/chargingvector.c
index 0fed98b4c9..e736ba9688 100644
--- a/src/modules/siputils/chargingvector.c
+++ b/src/modules/siputils/chargingvector.c
@@ -410,7 +410,7 @@ int sip_handle_pcv(struct sip_msg *msg, char *flags, char *str2)
char * pcv_body = pcv_buf + 19;
char pcv_value[40];
- /* We use the IP adress of the interface that received the message as generated-at */
+ /* We use the IP address of the interface that received the message as generated-at */
if(msg->rcv.bind_address==NULL || msg->rcv.bind_address->address_str.s==NULL)
{
LM_ERR("No IP address for message. Failed to generate charging vector.\n");
diff --git a/src/modules/siputils/checks.c b/src/modules/siputils/checks.c
index c174662d8d..6aba2317db 100644
--- a/src/modules/siputils/checks.c
+++ b/src/modules/siputils/checks.c
@@ -575,7 +575,7 @@ int w_uri_param_rm(struct sip_msg* _msg, char* _param, char* _str2)
* Converts URI, if it is tel URI, to SIP URI. Returns 1, if
* conversion succeeded and 2 if no conversion was needed, i.e., URI was not
* tel URI. Returns -1, if conversion failed. Takes SIP URI hostpart from
- * second parameter and (if needed) writes the result to third paramater.
+ * second parameter and (if needed) writes the result to third parameter.
*/
int tel2sip(struct sip_msg* _msg, char* _uri, char* _hostpart, char* _res)
{
diff --git a/src/modules/siputils/checks.h b/src/modules/siputils/checks.h
index eaeaca3f81..e55739e66a 100644
--- a/src/modules/siputils/checks.h
+++ b/src/modules/siputils/checks.h
@@ -71,7 +71,7 @@ int ki_add_uri_param(struct sip_msg* _msg, str* param);
* Converts URI, if it is tel URI, to SIP URI. Returns 1, if
* conversion succeeded or if no conversion was needed, i.e., URI was not
* tel URI. Returns -1, if conversion failed. Takes SIP URI hostpart from
- * second parameter and (if needed) writes the result to third paramater.
+ * second parameter and (if needed) writes the result to third parameter.
*/
int tel2sip(struct sip_msg* _msg, char* _uri, char* _hostpart, char* _res);
diff --git a/src/modules/siputils/contact_ops.c b/src/modules/siputils/contact_ops.c
index 86b02382cc..322911f3c4 100644
--- a/src/modules/siputils/contact_ops.c
+++ b/src/modules/siputils/contact_ops.c
@@ -304,7 +304,7 @@ int encode2format(str uri, struct uri_format *format)
format->first = start - string + 4; /*sip: */
format->second = end - string;
/* --------------------------testing ------------------------------- */
- /* sip:gva@pass@10.0.0.1;;transport=udp>;expires=2 INCORECT BEHAVIOR OF
+ /* sip:gva@pass@10.0.0.1;;transport=udp>;expires=2 INCORRECT BEHAVIOR OF
* parse_uri,myfunction works good */
foo = parse_uri(start, end - start, &sipUri);
if(foo != 0) {
diff --git a/src/modules/siputils/doc/siputils_admin.xml b/src/modules/siputils/doc/siputils_admin.xml
index d887c1b260..f3e9d32a55 100644
--- a/src/modules/siputils/doc/siputils_admin.xml
+++ b/src/modules/siputils/doc/siputils_admin.xml
@@ -1181,7 +1181,7 @@ if (is_supported("outbound")) { ... }
for replies true also in the case of additional SIP reply reception.
</para>
<para>
- Parameter mode is optional and can be an integer or a varaible holding
+ Parameter mode is optional and can be an integer or a variable holding
an integer. If not provided, the behaviour is like mode==0.
</para>
<para>
diff --git a/src/modules/siputils/siputils.c b/src/modules/siputils/siputils.c
index 139a334f79..099248555e 100644
--- a/src/modules/siputils/siputils.c
+++ b/src/modules/siputils/siputils.c
@@ -22,7 +22,7 @@
/*!
* \file
- * \brief Module with several utiltity functions related to SIP messages handling
+ * \brief Module with several utility functions related to SIP messages handling
* \ingroup siputils
* - Module \ref siputils
*/
Module: kamailio
Branch: master
Commit: c13b8d4cf35b7f9ece143b61514eec9a082f4ac5
URL: https://github.com/kamailio/kamailio/commit/c13b8d4cf35b7f9ece143b61514eec9…
Author: �������������������� �������������������������������� <git-dpa(a)aegee.org>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-02-08T14:05:32+01:00
doc/scripts: typos
---
Modified: doc/scripts/cdefs2doc/dump_cfg_defs.pl
Modified: doc/scripts/cdefs2doc/dump_counters.pl
Modified: doc/scripts/cdefs2doc/dump_rpcs.pl
Modified: doc/scripts/cdefs2doc/dump_selects.pl
---
Diff: https://github.com/kamailio/kamailio/commit/c13b8d4cf35b7f9ece143b61514eec9…
Patch: https://github.com/kamailio/kamailio/commit/c13b8d4cf35b7f9ece143b61514eec9…
---
diff --git a/doc/scripts/cdefs2doc/dump_cfg_defs.pl b/doc/scripts/cdefs2doc/dump_cfg_defs.pl
index 225a817525..b1517dca1f 100755
--- a/doc/scripts/cdefs2doc/dump_cfg_defs.pl
+++ b/doc/scripts/cdefs2doc/dump_cfg_defs.pl
@@ -128,7 +128,7 @@ sub help
C code.
-s | --src | --source - name of the source file, needed only if
the input file is in "raw" translation
- unit format (--tu) and usefull to restrict
+ unit format (--tu) and useful to restrict
and speed-up the search.
--patch - show patches needed for the
GCC::TranslationUnit package.
@@ -389,7 +389,7 @@ sub expr_op0{
my $no=@cfg_default;
$i=0;
if ($no > 0 && @cfg_defs != $no) {
- print(STDERR "WARNING: different array lenghts ($def_cfg_name($no) &&",
+ print(STDERR "WARNING: different array lengths ($def_cfg_name($no) &&",
" $cfg_var_name($(scalar @cfg_defs)))\n");
$no=0;
}
diff --git a/doc/scripts/cdefs2doc/dump_counters.pl b/doc/scripts/cdefs2doc/dump_counters.pl
index 4387ee9a5e..1ddfa29e73 100755
--- a/doc/scripts/cdefs2doc/dump_counters.pl
+++ b/doc/scripts/cdefs2doc/dump_counters.pl
@@ -116,7 +116,7 @@ sub help
C code.
-s | --src | --source - name of the source file, needed only if
the input file is in "raw" translation
- unit format (--tu) and usefull to restrict
+ unit format (--tu) and useful to restrict
and speed-up the search.
--patch - show patches needed for the
GCC::TranslationUnit package.
diff --git a/doc/scripts/cdefs2doc/dump_rpcs.pl b/doc/scripts/cdefs2doc/dump_rpcs.pl
index 6c991edf90..80cfe807d3 100755
--- a/doc/scripts/cdefs2doc/dump_rpcs.pl
+++ b/doc/scripts/cdefs2doc/dump_rpcs.pl
@@ -121,7 +121,7 @@ sub help
C code.
-s | --src | --source - name of the source file, needed only if
the input file is in "raw" translation
- unit format (--tu) and usefull to restrict
+ unit format (--tu) and useful to restrict
and speed-up the search.
--patch - show patches needed for the
GCC::TranslationUnit package.
diff --git a/doc/scripts/cdefs2doc/dump_selects.pl b/doc/scripts/cdefs2doc/dump_selects.pl
index 4ba3ed4850..b48f76bbba 100755
--- a/doc/scripts/cdefs2doc/dump_selects.pl
+++ b/doc/scripts/cdefs2doc/dump_selects.pl
@@ -120,7 +120,7 @@ sub help
C code.
-s | --src | --source - name of the source file, needed only if
the input file is in "raw" translation
- unit format (--tu) and usefull to restrict
+ unit format (--tu) and useful to restrict
and speed-up the search.
--patch - show patches needed for the
GCC::TranslationUnit package.
Module: kamailio
Branch: master
Commit: 3ee5c995778be835b1c79ec0a543f42105bdef8d
URL: https://github.com/kamailio/kamailio/commit/3ee5c995778be835b1c79ec0a543f42…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-02-08T11:58:47+01:00
lib/srdb1/2: fixed typos
---
Modified: src/lib/srdb1/schema/uid_credentials.xml
Modified: src/lib/srdb2/schema/credentials.xml
---
Diff: https://github.com/kamailio/kamailio/commit/3ee5c995778be835b1c79ec0a543f42…
Patch: https://github.com/kamailio/kamailio/commit/3ee5c995778be835b1c79ec0a543f42…
---
diff --git a/src/lib/srdb1/schema/uid_credentials.xml b/src/lib/srdb1/schema/uid_credentials.xml
index ba481bdbffe..1b4a605c11a 100644
--- a/src/lib/srdb1/schema/uid_credentials.xml
+++ b/src/lib/srdb1/schema/uid_credentials.xml
@@ -18,7 +18,7 @@
digest authentication and SERWeb authentication are same. There are cases,
however, where separate credentials for SERWeb and separate credentials
for digest authentication may be needed. One such example are setups where
- subscribers get HW user agents with locked configuration and thay do not
+ subscribers get HW user agents with locked configuration and they do not
know the password and are not allowed to change it. If they should be able
to authenticate in SERWeb then they need different credentials with
different password.
diff --git a/src/lib/srdb2/schema/credentials.xml b/src/lib/srdb2/schema/credentials.xml
index a6c3ccadfbc..335b55478a1 100644
--- a/src/lib/srdb2/schema/credentials.xml
+++ b/src/lib/srdb2/schema/credentials.xml
@@ -17,7 +17,7 @@
digest authentication and SERWeb authentication are same. There are cases,
however, where separate credentials for SERWeb and separate credentials
for digest authentication may be needed. One such example are setups where
- subscribers get HW user agents with locked configuration and thay do not
+ subscribers get HW user agents with locked configuration and they do not
know the password and are not allowed to change it. If they should be able
to authenticate in SERWeb then they need different credentials with
different password.
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/3357
-- Commit Summary --
* usrloc: typos
* src/lib: typos
* acc: typos
* acc_diameter: typos
-- File Changes --
M src/lib/Makefile.defs (6)
M src/lib/README (2)
M src/lib/binrpc/binrpc_api.c (2)
M src/lib/binrpc/binrpc_api.h (2)
M src/lib/cds/doc/destroy_sstream.xml (4)
M src/lib/cds/dstring.h (2)
M src/lib/cds/msg_queue.c (2)
M src/lib/cds/msg_queue.h (14)
M src/lib/cds/sstr.h (2)
M src/lib/ims/ims_getters.c (4)
M src/lib/ims/ims_getters.h (4)
M src/lib/presence/notifier.h (2)
M src/lib/presence/notifier_domain.c (10)
M src/lib/presence/subscriber.h (4)
M src/lib/presence/xml_utils.c (2)
M src/lib/srdb2/db_con.c (2)
M src/lib/srdb2/db_gen.h (4)
M src/lib/xcap/xcap_client.c (2)
M src/lib/xcap/xml_utils.c (2)
M src/modules/acc/acc.c (4)
M src/modules/acc/acc_api.h (8)
M src/modules/acc/acc_logic.c (6)
M src/modules/acc/acc_mod.c (4)
M src/modules/acc/doc/acc_admin.xml (36)
M src/modules/acc/doc/acc_faq.xml (8)
M src/modules/acc_diameter/acc_diameter_mod.c (4)
M src/modules/acc_diameter/diam_avp.c (4)
M src/modules/acc_diameter/diam_message.c (2)
M src/modules/acc_diameter/diam_tcp.c (2)
M src/modules/acc_diameter/doc/acc_diameter_admin.xml (2)
M src/modules/usrloc/doc/usrloc_admin.xml (14)
M src/modules/usrloc/doc/usrloc_devel.xml (2)
M src/modules/usrloc/udomain.c (2)
M src/modules/usrloc/urecord.c (2)
M src/modules/usrloc/urecord.h (2)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/3357.patchhttps://github.com/kamailio/kamailio/pull/3357.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3357
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/pull/3357(a)github.com>
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:

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>