Skip to content

Commit

Permalink
Rebuild documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
opensips-github committed Jul 2, 2022
1 parent 801e72b commit ad4df00
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 20 deletions.
28 changes: 12 additions & 16 deletions modules/b2b_logic/README
Expand Up @@ -735,21 +735,17 @@ route[b2b_logic_request] {

Example 1.27. b2b_bridge_request usage
...
modparam("b2b_entities", "script_req_route", "b2b_request")
...
route[b2b_request]
{
# incoming requests from the B2B entities
...
if ($ci~="^B2B") { #keep this aligned with b2b_key_prefix
# request coming from the UAC side;
# the Call-ID carries the B2B key ID
if (is_method("BYE") {
$var(entity) = 1;
b2b_bridge_request($ci,$var(entity));
}
}
...
if ($rU == "pickup") {
# get the b2b logic key of the parked call for this user
cache_fetch("local", "$fU", $var(b2bl_key));
cache_remove("local", "$fU");

if ($var(b2bl_key) != NULL)
b2b_bridge_request($var(b2bl_key), 0);
else
send_reply(481, "Call/Transaction Does Not Exist");

exit;
}
...

Expand Down Expand Up @@ -1109,7 +1105,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 24 2582 2406
1. Vlad Patrascu (@rvlad-patrascu) 88 26 2604 2422
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
Expand Down
8 changes: 4 additions & 4 deletions modules/b2b_logic/doc/contributors.xml
Expand Up @@ -21,10 +21,10 @@
<row>
<entry>1. </entry>
<entry>Vlad Patrascu (<ulink url="https://github.com/rvlad-patrascu">@rvlad-patrascu</ulink>)</entry>
<entry align="center">86</entry>
<entry align="center">24</entry>
<entry align="center">2582</entry>
<entry align="center">2406</entry>
<entry align="center">88</entry>
<entry align="center">26</entry>
<entry align="center">2604</entry>
<entry align="center">2422</entry>
</row>
<row>
<entry>2. </entry>
Expand Down

0 comments on commit ad4df00

Please sign in to comment.