Module: kamailio
Branch: master
Commit: 9c9366473280c52d7f79348637a56264420d48fc
URL: https://github.com/kamailio/kamailio/commit/9c9366473280c52d7f79348637a5626…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2017-10-09T16:46:17+02:00
modules: readme files regenerated - path ... [skip ci]
---
Modified: src/modules/path/README
---
Diff: https://github.com/kamailio/kamailio/commit/9c9366473280c52d7f79348637a5626…
Patch: https://github.com/kamailio/kamailio/commit/9c9366473280c52d7f79348637a5626…
---
diff --git a/src/modules/path/README b/src/modules/path/README
index d2e3d69398..4d6e7cba5c 100644
--- a/src/modules/path/README
+++ b/src/modules/path/README
@@ -292,6 +292,13 @@ if (!add_path("loadbalancer", "ob")) {
address as domain-part, and the address the request has been received
from as received-parameter.
+ If the “outbound” module was loaded before this module, and outbound is
+ required for this request, the header will be in the form “Path:
+ <sip:flowtoken@1.2.3.4;lr;received=sip:2.3.4.5:1234;ob>”, where
+ “flowtoken” is the RFC 5626 flow-token that can be used to identify the
+ source and local address and transport the request was received on, and
+ where “1.2.3.4” is the address of the outgoing interface.
+
This function can be used from REQUEST_ROUTE.
Example 1.8. add_path_received() 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
<!-- 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
<!-- Describe your changes in detail -->
- added the possiblity to have the received parameter and flow toke
in the add_path_received function
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/1261
-- Commit Summary --
* path: insert flow token in path header with received
-- File Changes --
M src/modules/path/doc/path_admin.xml (9)
M src/modules/path/path.c (78)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/1261.patchhttps://github.com/kamailio/kamailio/pull/1261.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/1261
using ""%" HEX HEX" mechanism for escaping from RFC 2396
#### 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:
- [ ] PR should be backported to stable branches
- [x] Tested changes locally
- [ ] Related to issue #XXXX (replace XXXX with an open issue number)
#### Description
I consider it non breaking because with the existing a field containing an ASCII vertical bar '|' would break the separator count and result in broken CDRs, etc. in this case changing the default behavior is probably recommended, someone could abuse this flaw.
Test: consider the following message, the '|' character in the call-id will break the accounting event.
```
INVITE sip:+11231234567@127.0.0.101 SIP/2.0
Via: SIP/2.0/UDP 1.1.69.51:5070;rport;branch=z9hG4bKPjpM.BvWCQzoS0BJ7TgnuLF9YtmHQTlDgd
Max-Forwards: 70
Call-ID: fG8qa5Xc-iNDLhIAnuLZP|njL1sojRRD
```
With the encoding it is replaced with '%7C', no modifications should be required to systems processing the ACC events since different behavior will only take place when there is an invalid ACC event:
```
cat /var/log/acc/acc_129.log
INVITE|upDPn89PCIq7SLTssEGoLoSbC-jDRnfj||fG8qa5Xc-iNDLhIAnuLZP%7CnjL1sojRRD.|403|Forbidden
```
Extra comments:
I corrected the documentation on the command 'flatstore.rotate', since it was not working, but this one is 'flatstore.k_rotate'
If I understand correctly this module was never migrated from SER to Kamailio completely ...
This change may be the only important one for operation, so I am not proposing any extra refactoring.
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/1262
-- Commit Summary --
* db_flatstore: encode delimiter param
-- File Changes --
M src/modules/db_flatstore/db_flatstore.c (5)
M src/modules/db_flatstore/doc/db_flatstore.xml (14)
M src/modules/db_flatstore/doc/db_flatstore_params.xml (11)
M src/modules/db_flatstore/km_flatstore.c (15)
M src/modules/db_flatstore/km_flatstore.h (2)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/1262.patchhttps://github.com/kamailio/kamailio/pull/1262.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/1262