Skip to content

Commit

Permalink
modules: readme files regenerated - modules ... [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
kamailio-dev committed Jul 23, 2019
1 parent 082dd0c commit ede59f9
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 7 deletions.
29 changes: 23 additions & 6 deletions src/modules/tm/README
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,8 @@ Daniel-Constantin Mierla
6. Event Routes

6.1. event_route[tm:branch-failure]
6.2. event_route[tm:local-response]
6.2. event_route[tm:local-request]
6.3. event_route[tm:local-response]

7. TM Module API

Expand Down Expand Up @@ -261,7 +262,8 @@ Daniel-Constantin Mierla
1.91. t_is_retr_async_reply usage
1.92. t_uac_send usage
1.93. event_route[tm:branch-failure] usage
1.94. event_route[tm:local-response] usage
1.94. event_route[tm:local-request] usage
1.95. event_route[tm:local-response] usage

Chapter 1. Admin Guide

Expand Down Expand Up @@ -389,7 +391,8 @@ Chapter 1. Admin Guide
6. Event Routes

6.1. event_route[tm:branch-failure]
6.2. event_route[tm:local-response]
6.2. event_route[tm:local-request]
6.3. event_route[tm:local-response]

7. TM Module API

Expand Down Expand Up @@ -2903,7 +2906,8 @@ t_uac_send("OPTIONS", "sip:alice@kamailio.org", "", "",
6. Event Routes

6.1. event_route[tm:branch-failure]
6.2. event_route[tm:local-response]
6.2. event_route[tm:local-request]
6.3. event_route[tm:local-response]

6.1. event_route[tm:branch-failure]

Expand All @@ -2928,12 +2932,25 @@ event_route[tm:branch-failure:myroute] {
}
...

6.2. event_route[tm:local-response]
6.2. event_route[tm:local-request]

Executed after the tm module has sent a local generated, transaction
stateful request.

Example 1.94. event_route[tm:local-request] usage
...
event_route [tm:local-request] {
xlog("L_INFO", "Routing locally generated $rm to $ru\n");
t_set_fr(10000, 10000);
}
...

6.3. event_route[tm:local-response]

Executed after the tm module has sent a local generated, transaction
stateful response.

Example 1.94. event_route[tm:local-response] usage
Example 1.95. event_route[tm:local-response] usage
...
event_route[tm:local-response] {
xlog("tm:local-response replied locally\n");
Expand Down
2 changes: 1 addition & 1 deletion src/modules/uac/README
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,7 @@ if(uac_reg_request_to("$fU", 0))
failure_route[REMOTE_AUTH] {
if ($T_reply_code == 401 or $T_reply_code == 407) {
xlog("L_NOTICE", "Remote asked for authentication");
uac_auth()
uac_auth();
}
}
...
Expand Down

0 comments on commit ede59f9

Please sign in to comment.