### Description
I fave compiled Kamailio with ASAN and enabled alignment checks (`-fno-sanitize=alignment` do not used).
And get error
```
core/cfg/cfg_script.c:120:10: runtime error: load of misaligned address 0xffff96900cdc for type 'struct cfg_script_var_t *', which requires 8 byte alignment
0xffff96900cdc: note: pointer points here
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00 00 00 00 00
```
I do not aware this is important or not.
Leave it for your review.
### Additional Information
Compiled 375f86b69e11cf835ae919873d3cd56f32d589c8
Arch aarch64
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/2914
Hi!
The NATS module which is getting a publisher update soon, depends on libuv and the nats.c library.
Question for our heroes - the packagers!
Will it be possible to package this module in your distro?
I see that debian has libuv1, but fail to find nats.c libs.
Cheers,
/O
Module: kamailio
Branch: master
Commit: 63a34963c8376a2c17b7919847f7723fde6434f5
URL: https://github.com/kamailio/kamailio/commit/63a34963c8376a2c17b7919847f7723…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2021-11-05T11:46:16+01:00
modules: readme files regenerated - acc ... [skip ci]
---
Modified: src/modules/acc/README
---
Diff: https://github.com/kamailio/kamailio/commit/63a34963c8376a2c17b7919847f7723…
Patch: https://github.com/kamailio/kamailio/commit/63a34963c8376a2c17b7919847f7723…
---
diff --git a/src/modules/acc/README b/src/modules/acc/README
index 540bd20d4d..7c31188ac7 100644
--- a/src/modules/acc/README
+++ b/src/modules/acc/README
@@ -1331,10 +1331,11 @@ modparam("acc", "cdr_on_failed", 0)
6.49. acc_extra_size (int)
- This parameter is meant to replace MAX_ACC_EXTRA fixed size with
- desired size.
+ Set the maximum number of extra attributes that can be stored in the
+ accounting record (event accounting record). It is related to log_extra
+ and db_extra module parameters.
- Default value is 64 (MAX_ACC_EXTRA).
+ Default value is 64.
Example 1.49. acc_extra_size
...
@@ -1343,10 +1344,11 @@ modparam("acc", "acc_extra_size", 100)
6.50. cdr_extra_size (int)
- This parameter is meant to replace MAX_CDR_EXTRA fixed size with
- desired size.
+ Set the maximum number of extra attributes that can be stored in the
+ call data record (cdr by dialog module). It is related to cdr_extra
+ module parameter.
- Default value is 64 (MAX_CDR_EXTRA).
+ Default value is 64.
Example 1.50. cdr_extra_size
...
Module: kamailio
Branch: master
Commit: 9d65e09056c89d5a1391a2c29458005929516ce0
URL: https://github.com/kamailio/kamailio/commit/9d65e09056c89d5a1391a2c29458005…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2021-11-05T11:37:41+01:00
acc: updated docs for acc_extra_size and cdr_extra_size
---
Modified: src/modules/acc/doc/acc_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/9d65e09056c89d5a1391a2c29458005…
Patch: https://github.com/kamailio/kamailio/commit/9d65e09056c89d5a1391a2c29458005…
---
diff --git a/src/modules/acc/doc/acc_admin.xml b/src/modules/acc/doc/acc_admin.xml
index 0fd643c7a7..036163da14 100644
--- a/src/modules/acc/doc/acc_admin.xml
+++ b/src/modules/acc/doc/acc_admin.xml
@@ -1447,10 +1447,12 @@ modparam("acc", "cdr_on_failed", 0)
<section id="acc.p.acc_extra_size">
<title><varname>acc_extra_size</varname> (int)</title>
<para>
- This parameter is meant to replace MAX_ACC_EXTRA fixed size with desired size.
+ Set the maximum number of extra attributes that can be stored in the
+ accounting record (event accounting record). It is related to log_extra
+ and db_extra module parameters.
</para>
<para>
- Default value is 64 (MAX_ACC_EXTRA).
+ Default value is 64.
</para>
<example>
<title>acc_extra_size</title>
@@ -1465,10 +1467,12 @@ modparam("acc", "acc_extra_size", 100)
<section id="acc.p.cdr_extra_size">
<title><varname>cdr_extra_size</varname> (int)</title>
<para>
- This parameter is meant to replace MAX_CDR_EXTRA fixed size with desired size.
+ Set the maximum number of extra attributes that can be stored in the
+ call data record (cdr by dialog module). It is related to cdr_extra
+ module parameter.
</para>
<para>
- Default value is 64 (MAX_CDR_EXTRA).
+ Default value is 64.
</para>
<example>
<title>cdr_extra_size</title>
<!-- 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
- [X] Tested changes locally
- [ ] Related to issue #XXXX (replace XXXX with an open issue number)
#### Description
Increase largest version of GCC detected to 11 from 10.
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/2917
-- Commit Summary --
* <a href="https://github.com/kamailio/kamailio/pull/2917/commits/4d11948402ae315c94ff…">build: detect GCC 11</a>
-- File Changes --
M src/Makefile.defs (4)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/2917.patchhttps://github.com/kamailio/kamailio/pull/2917.diff
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/2917