diff --git a/modules/auth_jwt/README b/modules/auth_jwt/README index 9d9353db698..d5532502fd5 100644 --- a/modules/auth_jwt/README +++ b/modules/auth_jwt/README @@ -362,7 +362,7 @@ Chapter 2. Contributors Table 2.1. Top contributors by DevScore^(1), authored commits^(2) and lines added/removed^(3) Name DevScore Commits Lines ++ Lines -- - 1. Vlad Paiu (@vladpaiu) 15 3 1317 16 + 1. Vlad Paiu (@vladpaiu) 18 4 1519 16 2. Bogdan-Andrei Iancu (@bogdan-iancu) 4 2 6 7 (1) DevScore = author_commits + author_lines_added / @@ -385,7 +385,7 @@ Chapter 2. Contributors Table 2.2. Most recently active contributors^(1) to this module Name Commit Activity - 1. Vlad Paiu (@vladpaiu) Mar 2020 - Jan 2022 + 1. Vlad Paiu (@vladpaiu) Mar 2020 - Feb 2022 2. Bogdan-Andrei Iancu (@bogdan-iancu) Mar 2020 - Dec 2021 (1) including any documentation-related commits, excluding diff --git a/modules/auth_jwt/doc/contributors.xml b/modules/auth_jwt/doc/contributors.xml index 080714d68f2..5e46b961ede 100644 --- a/modules/auth_jwt/doc/contributors.xml +++ b/modules/auth_jwt/doc/contributors.xml @@ -21,9 +21,9 @@ 1. Vlad Paiu (@vladpaiu) - 15 - 3 - 1317 + 18 + 4 + 1519 16 @@ -65,7 +65,7 @@ 1. Vlad Paiu (@vladpaiu) - Mar 2020 - Jan 2022 + Mar 2020 - Feb 2022 2. diff --git a/modules/b2b_logic/README b/modules/b2b_logic/README index 763fa9c818d..efd0da5df00 100644 --- a/modules/b2b_logic/README +++ b/modules/b2b_logic/README @@ -62,6 +62,7 @@ B2B_LOGIC 1.6.1. b2b_trigger_scenario 1.6.2. b2b_bridge 1.6.3. b2b_list + 1.6.4. b2b_terminate_call 1.7. Exported Pseudo-Variables @@ -848,6 +849,19 @@ nsips.org MI FIFO Command Format: opensips-cli -x mi b2b_list +1.6.4. b2b_terminate_call + + Terminates an ongoing B2B session. + + Name: b2b_terminate_call + + Parameters: + * key : the b2b_logic key or the callid;from-tag;to-tag of + one of call legs of the ongoing session. + + MI FIFO Command Format: + opensips-cli -x mi b2b_terminate_call 159.0 + 1.7. Exported Pseudo-Variables 1.7.1. $b2b_logic.key @@ -1119,7 +1133,7 @@ Chapter 3. Contributors Table 3.1. Top contributors by DevScore^(1), authored commits^(2) and lines added/removed^(3) Name DevScore Commits Lines ++ Lines -- - 1. Vlad Patrascu (@rvlad-patrascu) 86 21 2906 2459 + 1. Vlad Patrascu (@rvlad-patrascu) 88 22 2964 2464 2. Nick Altmann (@nikbyte) 13 9 278 29 3. Bogdan-Andrei Iancu (@bogdan-iancu) 5 3 49 11 4. Maksym Sobolyev (@sobomax) 4 2 21 21 @@ -1148,7 +1162,7 @@ Chapter 3. Contributors Table 3.2. Most recently active contributors^(1) to this module Name Commit Activity - 1. Vlad Patrascu (@rvlad-patrascu) Nov 2020 - Jan 2022 + 1. Vlad Patrascu (@rvlad-patrascu) Nov 2020 - Feb 2022 2. Aron Podrigal (@ar45) Nov 2021 - Nov 2021 3. Razvan Crainea (@razvancrainea) Jan 2021 - Jul 2021 4. Bogdan-Andrei Iancu (@bogdan-iancu) Apr 2021 - May 2021 diff --git a/modules/b2b_logic/doc/contributors.xml b/modules/b2b_logic/doc/contributors.xml index 4326f6aaf75..0a1bd466b1c 100644 --- a/modules/b2b_logic/doc/contributors.xml +++ b/modules/b2b_logic/doc/contributors.xml @@ -21,10 +21,10 @@ 1. Vlad Patrascu (@rvlad-patrascu) - 86 - 21 - 2906 - 2459 + 88 + 22 + 2964 + 2464 2. @@ -113,7 +113,7 @@ 1. Vlad Patrascu (@rvlad-patrascu) - Nov 2020 - Jan 2022 + Nov 2020 - Feb 2022 2. diff --git a/modules/cachedb_local/README b/modules/cachedb_local/README index 2545219cd3c..72fd08b49dc 100644 --- a/modules/cachedb_local/README +++ b/modules/cachedb_local/README @@ -19,6 +19,7 @@ cachedb_local Module 1.4.3. cache_clean_period (int) 1.4.4. cluster_id (int) 1.4.5. cluster_persistency (string) + 1.4.6. enable_restart_persistency (int) 1.5. Exported Functions @@ -52,7 +53,8 @@ cachedb_local Module 1.3. Set cache_clean_period parameter 1.4. Setting the cluster_id parameter 1.5. Set cluster_persistency parameter - 1.6. cache_remove_chunk usage + 1.6. Set enable_restart_persistency parameter + 1.7. cache_remove_chunk usage Chapter 1. Admin Guide @@ -226,6 +228,27 @@ modparam("cachedb_local", "cluster_id", 1) modparam("cachedb_local", "cluster_persistency", "sync-from-cluster") ... +1.4.6. enable_restart_persistency (int) + + Enable restart persistency using the persistent memory + mechanism. Data is stored in a cache file that is mapped + against OpenSIPS memory. + + Note that you have to keep the same collection definitions from + a previous run in order to use the cached data for the + respective collections. + + If cluster persistency is enabled as well, keys loaded from the + persistent cache will be discarded if they are not received in + the cluster sync data. + + Default value is “0 (disabled)”. + + Example 1.6. Set enable_restart_persistency parameter +... +modparam("cachedb_local", "enable_restart_persistency", yes) +... + 1.5. Exported Functions 1.5.1. cache_remove_chunk([collection,] glob) @@ -242,7 +265,7 @@ modparam("cachedb_local", "cluster_persistency", "sync-from-cluster") This function can be used from all routes - Example 1.6. cache_remove_chunk usage + Example 1.7. cache_remove_chunk usage ... cache_remove_chunk("myinfo_*"); cache_remove_chunk("collection1", "myinfo_*"); @@ -286,8 +309,8 @@ Chapter 3. Contributors Name DevScore Commits Lines ++ Lines -- 1. Vlad Paiu (@vladpaiu) 32 10 1155 693 2. Liviu Chircu (@liviuchircu) 21 15 126 190 - 3. Bogdan-Andrei Iancu (@bogdan-iancu) 16 14 46 50 - 4. Vlad Patrascu (@rvlad-patrascu) 16 11 147 132 + 3. Vlad Patrascu (@rvlad-patrascu) 21 12 494 204 + 4. Bogdan-Andrei Iancu (@bogdan-iancu) 16 14 46 50 5. Anca Vamanu 13 5 739 54 6. Andrei Dragus 9 4 182 181 7. Fabian Gast (@fgast) 9 3 517 48 @@ -319,8 +342,8 @@ Chapter 3. Contributors Table 3.2. Most recently active contributors^(1) to this module Name Commit Activity - 1. Liviu Chircu (@liviuchircu) Mar 2014 - Dec 2021 - 2. Vlad Patrascu (@rvlad-patrascu) Jan 2017 - Sep 2021 + 1. Vlad Patrascu (@rvlad-patrascu) Jan 2017 - Feb 2022 + 2. Liviu Chircu (@liviuchircu) Mar 2014 - Dec 2021 3. Maksym Sobolyev (@sobomax) Jan 2021 - Jan 2021 4. Zero King (@l2dy) Mar 2020 - Mar 2020 5. Peter Lemenkov (@lemenkov) Jun 2018 - Feb 2020 diff --git a/modules/cachedb_local/doc/contributors.xml b/modules/cachedb_local/doc/contributors.xml index 15a691f76c5..81cbdd88f50 100644 --- a/modules/cachedb_local/doc/contributors.xml +++ b/modules/cachedb_local/doc/contributors.xml @@ -36,20 +36,20 @@ 3. + Vlad Patrascu (@rvlad-patrascu) + 21 + 12 + 494 + 204 + + + 4. Bogdan-Andrei Iancu (@bogdan-iancu) 16 14 46 50 - - 4. - Vlad Patrascu (@rvlad-patrascu) - 16 - 11 - 147 - 132 - 5. Anca Vamanu @@ -128,13 +128,13 @@ 1. - Liviu Chircu (@liviuchircu) - Mar 2014 - Dec 2021 + Vlad Patrascu (@rvlad-patrascu) + Jan 2017 - Feb 2022 2. - Vlad Patrascu (@rvlad-patrascu) - Jan 2017 - Sep 2021 + Liviu Chircu (@liviuchircu) + Mar 2014 - Dec 2021 3. diff --git a/modules/dialplan/README b/modules/dialplan/README index 316d7b0bc4d..a1b44229503 100644 --- a/modules/dialplan/README +++ b/modules/dialplan/README @@ -44,7 +44,8 @@ dialplan Module 1.8.2. dp_translate 1.8.3. dp_show_partiton - 1.9. Installation + 1.9. Provided Status/Report Identifiers + 1.10. Installation 2. Developer's Guide 3. Contributors @@ -519,7 +520,32 @@ xlog("'$var(in)' matched against partition '$var(part)'\n") MI DATAGRAM Command Format: opensips-cli -x mi dp_translate default -1.9. Installation +1.9. Provided Status/Report Identifiers + + The module provides the "dialplan" Status/Report group, where + each dialplan partition is defined as a separate SR identifier. + + The status of these identifiers reflects the readiness/status + of the cached data (if available or not when being loaded from + DB): + * -2 - no data at all (initial status) + * -1 - no data, initial loading in progress + * 1 - data loaded, partition ready + * 2 - data available, a reload in progress + + In terms of reports/logs, the following events will be + reported: + * starting DB data loading + * DB data loading failed, discarding + * DB data loading successfully completed + * N rules loaded (N discarded) + + For how to access and use the Status/Report information, please + see + https://www.opensips.org/Documentation/Interface-StatusReport-3 + -3. + +1.10. Installation The modules requires one table in OpenSIPS database: dialplan.The SQL syntax to create them can be found in @@ -544,7 +570,7 @@ Chapter 3. Contributors commits^(2) and lines added/removed^(3) Name DevScore Commits Lines ++ Lines -- 1. Liviu Chircu (@liviuchircu) 68 44 971 938 - 2. Bogdan-Andrei Iancu (@bogdan-iancu) 61 41 657 852 + 2. Bogdan-Andrei Iancu (@bogdan-iancu) 68 44 863 980 3. Ionut Ionita (@ionutrazvanionita) 40 20 1149 579 4. Anca Vamanu 33 5 3263 19 5. Andrei Dragus 24 3 382 1029 @@ -580,12 +606,12 @@ Chapter 3. Contributors Table 3.2. Most recently active contributors^(1) to this module Name Commit Activity - 1. Liviu Chircu (@liviuchircu) Jul 2012 - Nov 2021 - 2. Maksym Sobolyev (@sobomax) Jan 2021 - Jan 2021 - 3. Zero King (@l2dy) Mar 2020 - Mar 2020 - 4. Razvan Crainea (@razvancrainea) Dec 2010 - Sep 2019 - 5. Vlad Patrascu (@rvlad-patrascu) May 2017 - Apr 2019 - 6. Bogdan-Andrei Iancu (@bogdan-iancu) Jun 2008 - Apr 2019 + 1. Bogdan-Andrei Iancu (@bogdan-iancu) Jun 2008 - Feb 2022 + 2. Liviu Chircu (@liviuchircu) Jul 2012 - Nov 2021 + 3. Maksym Sobolyev (@sobomax) Jan 2021 - Jan 2021 + 4. Zero King (@l2dy) Mar 2020 - Mar 2020 + 5. Razvan Crainea (@razvancrainea) Dec 2010 - Sep 2019 + 6. Vlad Patrascu (@rvlad-patrascu) May 2017 - Apr 2019 7. Peter Lemenkov (@lemenkov) Jun 2018 - Jun 2018 8. Ovidiu Sas (@ovidiusas) Sep 2008 - Nov 2015 9. Ionut Ionita (@ionutrazvanionita) Jul 2014 - Nov 2015 @@ -604,9 +630,9 @@ Chapter 4. Documentation 4.1. Contributors - Last edited by: Liviu Chircu (@liviuchircu), Zero King (@l2dy), - Vlad Patrascu (@rvlad-patrascu), Bogdan-Andrei Iancu - (@bogdan-iancu), Razvan Crainea (@razvancrainea), Peter + Last edited by: Bogdan-Andrei Iancu (@bogdan-iancu), Liviu + Chircu (@liviuchircu), Zero King (@l2dy), Vlad Patrascu + (@rvlad-patrascu), Razvan Crainea (@razvancrainea), Peter Lemenkov (@lemenkov), Ovidiu Sas (@ovidiusas), Ionut Ionita (@ionutrazvanionita), Andrei Dragus, Anca Vamanu. diff --git a/modules/dialplan/doc/contributors.xml b/modules/dialplan/doc/contributors.xml index 028a7ebe652..dc266dd0b92 100644 --- a/modules/dialplan/doc/contributors.xml +++ b/modules/dialplan/doc/contributors.xml @@ -29,10 +29,10 @@ 2. Bogdan-Andrei Iancu (@bogdan-iancu) - 61 - 41 - 657 - 852 + 68 + 44 + 863 + 980 3. @@ -128,34 +128,34 @@ 1. + Bogdan-Andrei Iancu (@bogdan-iancu) + Jun 2008 - Feb 2022 + + + 2. Liviu Chircu (@liviuchircu) Jul 2012 - Nov 2021 - 2. + 3. Maksym Sobolyev (@sobomax) Jan 2021 - Jan 2021 - 3. + 4. Zero King (@l2dy) Mar 2020 - Mar 2020 - 4. + 5. Razvan Crainea (@razvancrainea) Dec 2010 - Sep 2019 - 5. + 6. Vlad Patrascu (@rvlad-patrascu) May 2017 - Apr 2019 - - 6. - Bogdan-Andrei Iancu (@bogdan-iancu) - Jun 2008 - Apr 2019 - 7. Peter Lemenkov (@lemenkov) @@ -190,7 +190,7 @@ Documentation
Contributors - Last edited by: Liviu Chircu (@liviuchircu), Zero King (@l2dy), Vlad Patrascu (@rvlad-patrascu), Bogdan-Andrei Iancu (@bogdan-iancu), Razvan Crainea (@razvancrainea), Peter Lemenkov (@lemenkov), Ovidiu Sas (@ovidiusas), Ionut Ionita (@ionutrazvanionita), Andrei Dragus, Anca Vamanu. + Last edited by: Bogdan-Andrei Iancu (@bogdan-iancu), Liviu Chircu (@liviuchircu), Zero King (@l2dy), Vlad Patrascu (@rvlad-patrascu), Razvan Crainea (@razvancrainea), Peter Lemenkov (@lemenkov), Ovidiu Sas (@ovidiusas), Ionut Ionita (@ionutrazvanionita), Andrei Dragus, Anca Vamanu.
diff --git a/modules/dispatcher/README b/modules/dispatcher/README index c2ac087a260..4cbe6d1b235 100644 --- a/modules/dispatcher/README +++ b/modules/dispatcher/README @@ -1385,7 +1385,7 @@ Chapter 3. Contributors Table 3.1. Top contributors by DevScore^(1), authored commits^(2) and lines added/removed^(3) Name DevScore Commits Lines ++ Lines -- - 1. Bogdan-Andrei Iancu (@bogdan-iancu) 155 98 2950 1915 + 1. Bogdan-Andrei Iancu (@bogdan-iancu) 156 99 2955 1918 2. Liviu Chircu (@liviuchircu) 104 66 1661 1426 3. Daniel-Constantin Mierla (@miconda) 81 39 3372 844 4. Andrei Datcu (@andrei-datcu) 47 15 2153 846 @@ -1426,9 +1426,9 @@ Chapter 3. Contributors Table 3.2. Most recently active contributors^(1) to this module Name Commit Activity - 1. John Burke (@john08burke) Feb 2021 - Jan 2022 - 2. Razvan Crainea (@razvancrainea) May 2011 - Nov 2021 - 3. Bogdan-Andrei Iancu (@bogdan-iancu) Oct 2005 - Oct 2021 + 1. Bogdan-Andrei Iancu (@bogdan-iancu) Oct 2005 - Feb 2022 + 2. John Burke (@john08burke) Feb 2021 - Jan 2022 + 3. Razvan Crainea (@razvancrainea) May 2011 - Nov 2021 4. Vlad Patrascu (@rvlad-patrascu) May 2017 - Sep 2021 5. Liviu Chircu (@liviuchircu) Aug 2012 - Mar 2021 6. Vlad Paiu (@vladpaiu) Mar 2012 - Apr 2020 diff --git a/modules/dispatcher/doc/contributors.xml b/modules/dispatcher/doc/contributors.xml index e7178a9b134..6db65b0ab66 100644 --- a/modules/dispatcher/doc/contributors.xml +++ b/modules/dispatcher/doc/contributors.xml @@ -21,10 +21,10 @@ 1. Bogdan-Andrei Iancu (@bogdan-iancu) - 155 - 98 - 2950 - 1915 + 156 + 99 + 2955 + 1918 2. @@ -128,18 +128,18 @@ 1. - John Burke (@john08burke) - Feb 2021 - Jan 2022 + Bogdan-Andrei Iancu (@bogdan-iancu) + Oct 2005 - Feb 2022 2. - Razvan Crainea (@razvancrainea) - May 2011 - Nov 2021 + John Burke (@john08burke) + Feb 2021 - Jan 2022 3. - Bogdan-Andrei Iancu (@bogdan-iancu) - Oct 2005 - Oct 2021 + Razvan Crainea (@razvancrainea) + May 2011 - Nov 2021 4. diff --git a/modules/drouting/README b/modules/drouting/README index e2a1c6e03b0..1065a4c8e8b 100644 --- a/modules/drouting/README +++ b/modules/drouting/README @@ -103,7 +103,8 @@ Dynamic Routing Module 1.6.1. E_DROUTING_STATUS - 1.7. Installation + 1.7. Provided Status/Report Identifiers + 1.8. Installation 2. Developer Guide 3. Contributors @@ -1746,7 +1747,33 @@ Status:: 0 if it was disabled from the script or active if the gateway is enabled. -1.7. Installation +1.7. Provided Status/Report Identifiers + + The module provides the "drouting" Status/Report group, where + each routing partition is defined as a separate SR identifier. + + The status of these identifiers reflects the readiness/status + of the cached data (if available or not when being loaded from + DB): + * -2 - no data at all (initial status) + * -1 - no data, initial loading in progress + * 1 - data loaded, partition ready + * 2 - data available, a reload in progress + + In terms of reports/logs, the following events will be + reported: + * starting DB data loading + * DB data loading failed, discarding + * DB data loading successfully completed + * N gateways loaded (N discarded), N carriers loaded (N + discarded), N rules loaded (N discarded) + + For how to access and use the Status/Report information, please + see + https://www.opensips.org/Documentation/Interface-StatusReport-3 + -3. + +1.8. Installation The module requires 4 tables in the OpenSIPS database: dr_groups, dr_gateways, dr_carriers, dr_rules. The SQL syntax @@ -1768,7 +1795,7 @@ Chapter 3. Contributors Table 3.1. Top contributors by DevScore^(1), authored commits^(2) and lines added/removed^(3) Name DevScore Commits Lines ++ Lines -- - 1. Bogdan-Andrei Iancu (@bogdan-iancu) 390 188 13340 5665 + 1. Bogdan-Andrei Iancu (@bogdan-iancu) 399 194 13544 5755 2. Liviu Chircu (@liviuchircu) 148 86 2419 2570 3. Razvan Crainea (@razvancrainea) 98 51 1168 2223 4. Mihai Tiganus (@tallicamike) 71 20 4301 910 @@ -1807,9 +1834,9 @@ Chapter 3. Contributors Table 3.2. Most recently active contributors^(1) to this module Name Commit Activity - 1. Razvan Crainea (@razvancrainea) Sep 2010 - Dec 2021 - 2. Liviu Chircu (@liviuchircu) Nov 2012 - Nov 2021 - 3. Bogdan-Andrei Iancu (@bogdan-iancu) Oct 2008 - Nov 2021 + 1. Bogdan-Andrei Iancu (@bogdan-iancu) Oct 2008 - Feb 2022 + 2. Razvan Crainea (@razvancrainea) Sep 2010 - Dec 2021 + 3. Liviu Chircu (@liviuchircu) Nov 2012 - Nov 2021 4. Vlad Patrascu (@rvlad-patrascu) Mar 2017 - Sep 2021 5. Nick Altmann (@nikbyte) Mar 2013 - May 2021 6. Walter Doekes (@wdoekes) May 2014 - Apr 2021 @@ -1832,8 +1859,8 @@ Chapter 4. Documentation 4.1. Contributors - Last edited by: Liviu Chircu (@liviuchircu), Bogdan-Andrei - Iancu (@bogdan-iancu), Razvan Crainea (@razvancrainea), Nick + Last edited by: Bogdan-Andrei Iancu (@bogdan-iancu), Liviu + Chircu (@liviuchircu), Razvan Crainea (@razvancrainea), Nick Altmann (@nikbyte), Vlad Patrascu (@rvlad-patrascu), Alexey Vasilyev (@vasilevalex), Peter Lemenkov (@lemenkov), Ionut Ionita (@ionutrazvanionita), Vlad Paiu (@vladpaiu), Mihai diff --git a/modules/drouting/doc/contributors.xml b/modules/drouting/doc/contributors.xml index 0f376496c7d..04718239322 100644 --- a/modules/drouting/doc/contributors.xml +++ b/modules/drouting/doc/contributors.xml @@ -21,10 +21,10 @@ 1. Bogdan-Andrei Iancu (@bogdan-iancu) - 390 - 188 - 13340 - 5665 + 399 + 194 + 13544 + 5755 2. @@ -128,18 +128,18 @@ 1. - Razvan Crainea (@razvancrainea) - Sep 2010 - Dec 2021 + Bogdan-Andrei Iancu (@bogdan-iancu) + Oct 2008 - Feb 2022 2. - Liviu Chircu (@liviuchircu) - Nov 2012 - Nov 2021 + Razvan Crainea (@razvancrainea) + Sep 2010 - Dec 2021 3. - Bogdan-Andrei Iancu (@bogdan-iancu) - Oct 2008 - Nov 2021 + Liviu Chircu (@liviuchircu) + Nov 2012 - Nov 2021 4. @@ -190,7 +190,7 @@ Documentation
Contributors - Last edited by: Liviu Chircu (@liviuchircu), Bogdan-Andrei Iancu (@bogdan-iancu), Razvan Crainea (@razvancrainea), Nick Altmann (@nikbyte), Vlad Patrascu (@rvlad-patrascu), Alexey Vasilyev (@vasilevalex), Peter Lemenkov (@lemenkov), Ionut Ionita (@ionutrazvanionita), Vlad Paiu (@vladpaiu), Mihai Tiganus (@tallicamike), Andrei Datcu (@andrei-datcu), Matt Lehner, Anca Vamanu, Andrei Dragus, Sergio Gutierrez. + Last edited by: Bogdan-Andrei Iancu (@bogdan-iancu), Liviu Chircu (@liviuchircu), Razvan Crainea (@razvancrainea), Nick Altmann (@nikbyte), Vlad Patrascu (@rvlad-patrascu), Alexey Vasilyev (@vasilevalex), Peter Lemenkov (@lemenkov), Ionut Ionita (@ionutrazvanionita), Vlad Paiu (@vladpaiu), Mihai Tiganus (@tallicamike), Andrei Datcu (@andrei-datcu), Matt Lehner, Anca Vamanu, Andrei Dragus, Sergio Gutierrez.
diff --git a/modules/fraud_detection/README b/modules/fraud_detection/README index f8f96b26be6..2da0faf2955 100644 --- a/modules/fraud_detection/README +++ b/modules/fraud_detection/README @@ -492,7 +492,7 @@ Chapter 2. Contributors Table 2.1. Top contributors by DevScore^(1), authored commits^(2) and lines added/removed^(3) Name DevScore Commits Lines ++ Lines -- - 1. Liviu Chircu (@liviuchircu) 46 38 359 273 + 1. Liviu Chircu (@liviuchircu) 49 40 371 276 2. Andrei Datcu (@andrei-datcu) 37 11 2665 235 3. Razvan Crainea (@razvancrainea) 8 6 14 11 4. Vlad Patrascu (@rvlad-patrascu) 8 5 73 114 @@ -521,7 +521,7 @@ Chapter 2. Contributors Table 2.2. Most recently active contributors^(1) to this module Name Commit Activity - 1. Liviu Chircu (@liviuchircu) Mar 2015 - Dec 2021 + 1. Liviu Chircu (@liviuchircu) Mar 2015 - Feb 2022 2. Razvan Crainea (@razvancrainea) Feb 2015 - Oct 2021 3. Maksym Sobolyev (@sobomax) Jan 2021 - Jan 2021 4. Vlad Patrascu (@rvlad-patrascu) May 2017 - Apr 2019 diff --git a/modules/fraud_detection/doc/contributors.xml b/modules/fraud_detection/doc/contributors.xml index f19512571e8..6bb486bdd6b 100644 --- a/modules/fraud_detection/doc/contributors.xml +++ b/modules/fraud_detection/doc/contributors.xml @@ -21,10 +21,10 @@ 1. Liviu Chircu (@liviuchircu) - 46 - 38 - 359 - 273 + 49 + 40 + 371 + 276 2. @@ -113,7 +113,7 @@ 1. Liviu Chircu (@liviuchircu) - Mar 2015 - Dec 2021 + Mar 2015 - Feb 2022 2. diff --git a/modules/mid_registrar/README b/modules/mid_registrar/README index 46d4900aaec..2fb43c5c6a7 100644 --- a/modules/mid_registrar/README +++ b/modules/mid_registrar/README @@ -1317,7 +1317,7 @@ Chapter 2. Contributors commits^(2) and lines added/removed^(3) Name DevScore Commits Lines ++ Lines -- 1. Liviu Chircu (@liviuchircu) 495 195 16286 10201 - 2. Bogdan-Andrei Iancu (@bogdan-iancu) 9 6 101 109 + 2. Bogdan-Andrei Iancu (@bogdan-iancu) 10 7 103 111 3. Vlad Patrascu (@rvlad-patrascu) 9 5 74 126 4. Razvan Crainea (@razvancrainea) 8 6 19 14 5. Chad Attermann (@attermann) 7 5 19 5 @@ -1347,7 +1347,7 @@ Chapter 2. Contributors Table 2.2. Most recently active contributors^(1) to this module Name Commit Activity - 1. Bogdan-Andrei Iancu (@bogdan-iancu) Apr 2017 - Jan 2022 + 1. Bogdan-Andrei Iancu (@bogdan-iancu) Apr 2017 - Feb 2022 2. Liviu Chircu (@liviuchircu) Jul 2016 - Jan 2022 3. Alexey Vasilyev (@vasilevalex) Jan 2022 - Jan 2022 4. Maksym Sobolyev (@sobomax) Oct 2020 - Oct 2020 diff --git a/modules/mid_registrar/doc/contributors.xml b/modules/mid_registrar/doc/contributors.xml index 7cefde83d07..c95bbe19393 100644 --- a/modules/mid_registrar/doc/contributors.xml +++ b/modules/mid_registrar/doc/contributors.xml @@ -29,10 +29,10 @@ 2. Bogdan-Andrei Iancu (@bogdan-iancu) - 9 - 6 - 101 - 109 + 10 + 7 + 103 + 111 3. @@ -129,7 +129,7 @@ 1. Bogdan-Andrei Iancu (@bogdan-iancu) - Apr 2017 - Jan 2022 + Apr 2017 - Feb 2022 2. diff --git a/modules/pike/README b/modules/pike/README index 158809e86a9..f9a23789992 100644 --- a/modules/pike/README +++ b/modules/pike/README @@ -33,6 +33,8 @@ pike Module 1.7.1. E_PIKE_BLOCKED + 1.8. Provided Status/Report Identifiers + 2. Developer Guide 3. Contributors @@ -262,6 +264,22 @@ if (!pike_check_req()) { exit; }; Parameters: * ip - the IP address that has been blocked. +1.8. Provided Status/Report Identifiers + + The module provides the "pike" Status/Report group, only with + the "main"/default SR identifier. + + There is no usefull status published by the module. + + In terms of reports/logs, the following events will be + reported: + * IP X.Y.Z.W detected as flooding + + For how to access and use the Status/Report information, please + see + https://www.opensips.org/Documentation/Interface-StatusReport-3 + -3. + Chapter 2. Developer Guide One single tree (for both IPv4 and IPv6) is used. Each node @@ -316,7 +334,7 @@ Chapter 3. Contributors Table 3.1. Top contributors by DevScore^(1), authored commits^(2) and lines added/removed^(3) Name DevScore Commits Lines ++ Lines -- - 1. Bogdan-Andrei Iancu (@bogdan-iancu) 134 56 4151 2665 + 1. Bogdan-Andrei Iancu (@bogdan-iancu) 137 58 4206 2669 2. Andrei Pelinescu-Onciul 15 8 120 336 3. Razvan Crainea (@razvancrainea) 13 11 94 18 4. Liviu Chircu (@liviuchircu) 12 9 29 67 @@ -352,9 +370,9 @@ Chapter 3. Contributors Table 3.2. Most recently active contributors^(1) to this module Name Commit Activity - 1. Liviu Chircu (@liviuchircu) Mar 2014 - Nov 2020 - 2. Razvan Crainea (@razvancrainea) May 2011 - Sep 2019 - 3. Bogdan-Andrei Iancu (@bogdan-iancu) Jun 2002 - Apr 2019 + 1. Bogdan-Andrei Iancu (@bogdan-iancu) Jun 2002 - Feb 2022 + 2. Liviu Chircu (@liviuchircu) Mar 2014 - Nov 2020 + 3. Razvan Crainea (@razvancrainea) May 2011 - Sep 2019 4. Vlad Patrascu (@rvlad-patrascu) May 2017 - Apr 2019 5. Peter Lemenkov (@lemenkov) Jun 2018 - Jun 2018 6. Julián Moreno Patiño Feb 2016 - Feb 2016 @@ -375,13 +393,13 @@ Chapter 4. Documentation 4.1. Contributors - Last edited by: Razvan Crainea (@razvancrainea), Peter Lemenkov - (@lemenkov), Liviu Chircu (@liviuchircu), Vlad Patrascu - (@rvlad-patrascu), Julián Moreno Patiño, Jarrod Baumann - (@jarrodb), Norman Brandinger (@NormB), Bogdan-Andrei Iancu - (@bogdan-iancu), Daniel-Constantin Mierla (@miconda), - Konstantin Bokarius, Edson Gellert Schubert, Jesus Rodrigues, - Elena-Ramona Modroiu, Jan Janak (@janakj). + Last edited by: Bogdan-Andrei Iancu (@bogdan-iancu), Razvan + Crainea (@razvancrainea), Peter Lemenkov (@lemenkov), Liviu + Chircu (@liviuchircu), Vlad Patrascu (@rvlad-patrascu), Julián + Moreno Patiño, Jarrod Baumann (@jarrodb), Norman Brandinger + (@NormB), Daniel-Constantin Mierla (@miconda), Konstantin + Bokarius, Edson Gellert Schubert, Jesus Rodrigues, Elena-Ramona + Modroiu, Jan Janak (@janakj). Documentation Copyrights: diff --git a/modules/pike/doc/contributors.xml b/modules/pike/doc/contributors.xml index b0dbf89f3e7..204a5fd9588 100644 --- a/modules/pike/doc/contributors.xml +++ b/modules/pike/doc/contributors.xml @@ -21,10 +21,10 @@ 1. Bogdan-Andrei Iancu (@bogdan-iancu) - 134 - 56 - 4151 - 2665 + 137 + 58 + 4206 + 2669 2. @@ -128,18 +128,18 @@ 1. - Liviu Chircu (@liviuchircu) - Mar 2014 - Nov 2020 + Bogdan-Andrei Iancu (@bogdan-iancu) + Jun 2002 - Feb 2022 2. - Razvan Crainea (@razvancrainea) - May 2011 - Sep 2019 + Liviu Chircu (@liviuchircu) + Mar 2014 - Nov 2020 3. - Bogdan-Andrei Iancu (@bogdan-iancu) - Jun 2002 - Apr 2019 + Razvan Crainea (@razvancrainea) + May 2011 - Sep 2019 4. @@ -190,7 +190,7 @@ Documentation
Contributors - Last edited by: Razvan Crainea (@razvancrainea), Peter Lemenkov (@lemenkov), Liviu Chircu (@liviuchircu), Vlad Patrascu (@rvlad-patrascu), Julián Moreno Patiño, Jarrod Baumann (@jarrodb), Norman Brandinger (@NormB), Bogdan-Andrei Iancu (@bogdan-iancu), Daniel-Constantin Mierla (@miconda), Konstantin Bokarius, Edson Gellert Schubert, Jesus Rodrigues, Elena-Ramona Modroiu, Jan Janak (@janakj). + Last edited by: Bogdan-Andrei Iancu (@bogdan-iancu), Razvan Crainea (@razvancrainea), Peter Lemenkov (@lemenkov), Liviu Chircu (@liviuchircu), Vlad Patrascu (@rvlad-patrascu), Julián Moreno Patiño, Jarrod Baumann (@jarrodb), Norman Brandinger (@NormB), Daniel-Constantin Mierla (@miconda), Konstantin Bokarius, Edson Gellert Schubert, Jesus Rodrigues, Elena-Ramona Modroiu, Jan Janak (@janakj).
diff --git a/modules/sql_cacher/README b/modules/sql_cacher/README index 4155fc8b270..1dcaf21a72c 100644 --- a/modules/sql_cacher/README +++ b/modules/sql_cacher/README @@ -27,6 +27,7 @@ SQL Cacher Module 1.6.1. $sql_cached_value(id{sep}col{sep}key) 1.7. Usage Example + 1.8. Provided Status/Report Identifiers 2. Contributors @@ -327,6 +328,32 @@ $avp(nd) = $sql_cached_value(carrier_fr_caching:next_domain:$var(some_id xlog("host name is: $sql_cached_value(carrier_fr_caching:host_name:2)"); ... +1.8. Provided Status/Report Identifiers + + The module provides the "sql_cacher" Status/Report group, where + each full cache is defined as a separate SR identifier. NOTE + that there are no identifiers created for the on-demand caches. + + The status of these identifiers reflects the readiness/status + of the cached data (if available or not when being loaded from + DB): + * -2 - no data at all (initial status) + * -1 - no data, initial loading in progress + * 1 - data loaded, partition ready + * 2 - data available, a reload in progress + + In terms of reports/logs, the following events will be + reported: + * starting DB data loading + * DB data loading failed, discarding + * DB data loading successfully completed + * N records loaded) + + For how to access and use the Status/Report information, please + see + https://www.opensips.org/Documentation/Interface-StatusReport-3 + -3. + Chapter 2. Contributors 2.1. By Commit Statistics @@ -337,7 +364,7 @@ Chapter 2. Contributors 1. Vlad Patrascu (@rvlad-patrascu) 90 41 3628 1112 2. Liviu Chircu (@liviuchircu) 22 18 166 115 3. Razvan Crainea (@razvancrainea) 15 13 25 14 - 4. Bogdan-Andrei Iancu (@bogdan-iancu) 6 4 12 18 + 4. Bogdan-Andrei Iancu (@bogdan-iancu) 7 5 116 21 5. Maksym Sobolyev (@sobomax) 4 2 3 3 6. Ionel Cerghit (@ionel-cerghit) 4 1 50 92 7. Dan Pascu (@danpascu) 3 1 1 1 @@ -367,12 +394,12 @@ Chapter 2. Contributors Table 2.2. Most recently active contributors^(1) to this module Name Commit Activity - 1. Vlad Patrascu (@rvlad-patrascu) Aug 2015 - Jan 2022 - 2. Gang Zhuo Nov 2021 - Nov 2021 - 3. Walter Doekes (@wdoekes) Apr 2021 - Apr 2021 - 4. Maksym Sobolyev (@sobomax) Oct 2020 - Jan 2021 - 5. Razvan Crainea (@razvancrainea) Feb 2016 - Jan 2021 - 6. Bogdan-Andrei Iancu (@bogdan-iancu) May 2017 - Mar 2020 + 1. Bogdan-Andrei Iancu (@bogdan-iancu) May 2017 - Feb 2022 + 2. Vlad Patrascu (@rvlad-patrascu) Aug 2015 - Jan 2022 + 3. Gang Zhuo Nov 2021 - Nov 2021 + 4. Walter Doekes (@wdoekes) Apr 2021 - Apr 2021 + 5. Maksym Sobolyev (@sobomax) Oct 2020 - Jan 2021 + 6. Razvan Crainea (@razvancrainea) Feb 2016 - Jan 2021 7. Liviu Chircu (@liviuchircu) Mar 2016 - Sep 2019 8. Dan Pascu (@danpascu) May 2019 - May 2019 9. Peter Lemenkov (@lemenkov) Jun 2018 - Jun 2018 @@ -387,9 +414,9 @@ Chapter 3. Documentation 3.1. Contributors - Last edited by: Vlad Patrascu (@rvlad-patrascu), Razvan Crainea - (@razvancrainea), Liviu Chircu (@liviuchircu), Peter Lemenkov - (@lemenkov), Bogdan-Andrei Iancu (@bogdan-iancu). + Last edited by: Bogdan-Andrei Iancu (@bogdan-iancu), Vlad + Patrascu (@rvlad-patrascu), Razvan Crainea (@razvancrainea), + Liviu Chircu (@liviuchircu), Peter Lemenkov (@lemenkov). Documentation Copyrights: diff --git a/modules/sql_cacher/doc/contributors.xml b/modules/sql_cacher/doc/contributors.xml index 4b3e7594c80..4d6b0f24706 100644 --- a/modules/sql_cacher/doc/contributors.xml +++ b/modules/sql_cacher/doc/contributors.xml @@ -45,10 +45,10 @@ 4. Bogdan-Andrei Iancu (@bogdan-iancu) - 6 - 4 - 12 - 18 + 7 + 5 + 116 + 21 5. @@ -128,34 +128,34 @@ 1. + Bogdan-Andrei Iancu (@bogdan-iancu) + May 2017 - Feb 2022 + + + 2. Vlad Patrascu (@rvlad-patrascu) Aug 2015 - Jan 2022 - 2. + 3. Gang Zhuo Nov 2021 - Nov 2021 - 3. + 4. Walter Doekes (@wdoekes) Apr 2021 - Apr 2021 - 4. + 5. Maksym Sobolyev (@sobomax) Oct 2020 - Jan 2021 - 5. + 6. Razvan Crainea (@razvancrainea) Feb 2016 - Jan 2021 - - 6. - Bogdan-Andrei Iancu (@bogdan-iancu) - May 2017 - Mar 2020 - 7. Liviu Chircu (@liviuchircu) @@ -190,7 +190,7 @@ Documentation
Contributors - Last edited by: Vlad Patrascu (@rvlad-patrascu), Razvan Crainea (@razvancrainea), Liviu Chircu (@liviuchircu), Peter Lemenkov (@lemenkov), Bogdan-Andrei Iancu (@bogdan-iancu). + Last edited by: Bogdan-Andrei Iancu (@bogdan-iancu), Vlad Patrascu (@rvlad-patrascu), Razvan Crainea (@razvancrainea), Liviu Chircu (@liviuchircu), Peter Lemenkov (@lemenkov).
diff --git a/modules/status_report/README b/modules/status_report/README index c9f9c6676fa..b19e118c368 100644 --- a/modules/status_report/README +++ b/modules/status_report/README @@ -129,7 +129,7 @@ Chapter 2. Contributors Table 2.1. Top contributors by DevScore^(1), authored commits^(2) and lines added/removed^(3) Name DevScore Commits Lines ++ Lines -- - 1. Bogdan-Andrei Iancu (@bogdan-iancu) 4 1 330 0 + 1. Bogdan-Andrei Iancu (@bogdan-iancu) 7 3 339 7 (1) DevScore = author_commits + author_lines_added / (project_lines_added / project_commits) + author_lines_deleted diff --git a/modules/status_report/doc/contributors.xml b/modules/status_report/doc/contributors.xml index 5ef3a2d5b5f..0cf7414857c 100644 --- a/modules/status_report/doc/contributors.xml +++ b/modules/status_report/doc/contributors.xml @@ -21,10 +21,10 @@ 1. Bogdan-Andrei Iancu (@bogdan-iancu) - 4 - 1 - 330 - 0 + 7 + 3 + 339 + 7 diff --git a/modules/usrloc/README b/modules/usrloc/README index 9ff1e5078d7..b1c339d93c6 100644 --- a/modules/usrloc/README +++ b/modules/usrloc/README @@ -1578,7 +1578,7 @@ Chapter 3. Contributors Name DevScore Commits Lines ++ Lines -- 1. Jan Janak (@janakj) 410 117 15689 10095 2. Liviu Chircu (@liviuchircu) 331 195 9138 3681 - 3. Bogdan-Andrei Iancu (@bogdan-iancu) 244 149 4230 3622 + 3. Bogdan-Andrei Iancu (@bogdan-iancu) 245 150 4232 3624 4. Vlad Patrascu (@rvlad-patrascu) 41 23 788 655 5. Daniel-Constantin Mierla (@miconda) 40 29 544 308 6. Ionut Ionita (@ionutrazvanionita) 40 24 1099 413 @@ -1621,8 +1621,8 @@ Chapter 3. Contributors Table 3.2. Most recently active contributors^(1) to this module Name Commit Activity - 1. Razvan Crainea (@razvancrainea) Jul 2011 - Nov 2021 - 2. Bogdan-Andrei Iancu (@bogdan-iancu) Mar 2002 - Nov 2021 + 1. Bogdan-Andrei Iancu (@bogdan-iancu) Mar 2002 - Feb 2022 + 2. Razvan Crainea (@razvancrainea) Jul 2011 - Nov 2021 3. Vlad Patrascu (@rvlad-patrascu) Jul 2016 - Sep 2021 4. Liviu Chircu (@liviuchircu) Jan 2013 - Aug 2021 5. Walter Doekes (@wdoekes) Apr 2019 - May 2021 diff --git a/modules/usrloc/doc/contributors.xml b/modules/usrloc/doc/contributors.xml index 95dbbe74efc..f21758cb427 100644 --- a/modules/usrloc/doc/contributors.xml +++ b/modules/usrloc/doc/contributors.xml @@ -37,10 +37,10 @@ 3. Bogdan-Andrei Iancu (@bogdan-iancu) - 244 - 149 - 4230 - 3622 + 245 + 150 + 4232 + 3624 4. @@ -128,13 +128,13 @@ 1. - Razvan Crainea (@razvancrainea) - Jul 2011 - Nov 2021 + Bogdan-Andrei Iancu (@bogdan-iancu) + Mar 2002 - Feb 2022 2. - Bogdan-Andrei Iancu (@bogdan-iancu) - Mar 2002 - Nov 2021 + Razvan Crainea (@razvancrainea) + Jul 2011 - Nov 2021 3.