Discussion to define cmake format options and coding/naming styles. It is better to define most of them now to have coherency in the future. Started from the discussion on #4066.
Comment with what you would like to have, describing when useful why your proposal is a good/better option.
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/4075
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/issues/4075(a)github.com>
Module: kamailio
Branch: master
Commit: 7dc92ed5a45e004cc1dc6898a9027d265e220721
URL: https://github.com/kamailio/kamailio/commit/7dc92ed5a45e004cc1dc6898a9027d2…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2025-06-17T22:16:09+02:00
modules: readme files regenerated - rr ... [skip ci]
---
Modified: src/modules/rr/README
---
Diff: https://github.com/kamailio/kamailio/commit/7dc92ed5a45e004cc1dc6898a9027d2…
Patch: https://github.com/kamailio/kamailio/commit/7dc92ed5a45e004cc1dc6898a9027d2…
---
diff --git a/src/modules/rr/README b/src/modules/rr/README
index 0fc41c9767a..1919d7a6e84 100644
--- a/src/modules/rr/README
+++ b/src/modules/rr/README
@@ -466,13 +466,16 @@ if(!loose_route_preloaded()) {
5.3. loose_route_mode(vmode)
- The function is similar to `loose_route()`, but it does only loose
- routing processing if vmode==1, skipping the testing of r-uri==myself
- for performing strict routing. If vmode==0, it behaves like
- loose_route().
+ The function is similar to `loose_route()`, but it accepts route mode
+ bitmask as vmode parameter.
- It is a convenient function to use with application servers that set
- the Contact URI to SIP server address.
+ If bit one is set, then do only loose routing processing, skipping the
+ testing of r-uri==myself for performing strict routing. If not, behave
+ like loose_route(). If bit two is set, then skip flow tokens
+ processing.
+
+ First bit is convenient to use with application servers that set the
+ Contact URI to SIP server address.
This function can be used from REQUEST_ROUTE.