Module: kamailio
Branch: master
Commit: 52cee630d367287daa4b15c042b25bec76192e80
URL: https://github.com/kamailio/kamailio/commit/52cee630d367287daa4b15c042b25be…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2023-11-27T14:02:31+01:00
modules: readme files regenerated - topoh ... [skip ci]
---
Modified: src/modules/topoh/README
---
Diff: https://github.com/kamailio/kamailio/commit/52cee630d367287daa4b15c042b25be…
Patch: https://github.com/kamailio/kamailio/commit/52cee630d367287daa4b15c042b25be…
---
diff --git a/src/modules/topoh/README b/src/modules/topoh/README
index 2fa0f4fd398..f1a761bf8f9 100644
--- a/src/modules/topoh/README
+++ b/src/modules/topoh/README
@@ -162,10 +162,12 @@ modparam("topoh", "mask_key", "some secret here")
IP address to be used in masked headers to build valid SIP URIs. Can be
any IP address, even a private-space or non-existing IP address (e.g.,
192.168.1.1, 127.0.0.2), including the SIP server address, but must not
- be an address potentially used by clients. It is not used at all for
+ be an address potentially used by clients. If not set, the advertised
+ IP of the incoming or outgoing socket is used. If there is no
+ advertised IP, the IP of the socket is used. It is not used at all for
SIP routing.
- Default value is "127.0.0.8".
+ Default value is empty.
Example 1.2. Set mask_ip parameter
...
<!-- 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)
- [ ] 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)
- [ ] 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 -->
topoh: uses socket IP when no mask_ip is defined
If the parameter mask_ip is not defined the module finds the socket IP
and uses that as mask IP for the message.
If the socket has an advertised IP it is used, otherwise the socket IP is used.
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/3341
-- Commit Summary --
* topoh: uses socket IP when no mask_ip is defined
* Merge remote-tracking branch 'upstream/master'
-- File Changes --
M src/modules/topoh/doc/topoh_admin.xml (4)
M src/modules/topoh/th_msg.c (55)
M src/modules/topoh/th_msg.h (16)
M src/modules/topoh/topoh_mod.c (309)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/3341.patchhttps://github.com/kamailio/kamailio/pull/3341.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3341
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/pull/3341(a)github.com>
Module: kamailio
Branch: master
Commit: 8bfe55c68a06492c93a327eff6813fa0da8399dd
URL: https://github.com/kamailio/kamailio/commit/8bfe55c68a06492c93a327eff6813fa…
Author: TorPetterson <32388321+TorPetterson(a)users.noreply.github.com>
Committer: GitHub <noreply(a)github.com>
Date: 2023-11-27T13:50:09+01:00
topoh: uses socket IP when no mask_ip is defined (#3341)
* topoh: uses socket IP when no mask_ip is defined
If the parameter mask_ip is not defined the module finds the socket IP
and uses that as mask IP for the message.
If the socket has an advertised IP it is used, otherwise the socket IP is used.
---
Modified: src/modules/topoh/doc/topoh_admin.xml
Modified: src/modules/topoh/th_msg.c
Modified: src/modules/topoh/th_msg.h
Modified: src/modules/topoh/topoh_mod.c
---
Diff: https://github.com/kamailio/kamailio/commit/8bfe55c68a06492c93a327eff6813fa…
Patch: https://github.com/kamailio/kamailio/commit/8bfe55c68a06492c93a327eff6813fa…
Module: kamailio
Branch: master
Commit: f7caef5d4ba3fde04425b6480badcacc14f4f6e6
URL: https://github.com/kamailio/kamailio/commit/f7caef5d4ba3fde04425b6480badcac…
Author: Wolfgang Kampichler <dev(a)kampichler.info>
Committer: Wolfgang Kampichler <dev(a)kampichler.info>
Date: 2023-11-25T11:06:21+01:00
lost: support of shape representations (as in RFC5491) and new 3d parameter
- A Presence Information Data Format Location Object (PIDF-LO) may
contain one of the shape types as listed in RFC5491. A LoST
findService request currently contains only a profile for
two-dimensional geodetic location information, which
is the default setting for this 3d parameter. The parameter
can be set to 1 if a LoST server supports 3d, otherwise a
3d location is reduced to 2d by the module.
---
Modified: src/modules/lost/doc/lost_admin.xml
Modified: src/modules/lost/functions.c
Modified: src/modules/lost/lost.c
Modified: src/modules/lost/response.c
Modified: src/modules/lost/utilities.c
Modified: src/modules/lost/utilities.h
---
Diff: https://github.com/kamailio/kamailio/commit/f7caef5d4ba3fde04425b6480badcac…
Patch: https://github.com/kamailio/kamailio/commit/f7caef5d4ba3fde04425b6480badcac…