Skip to content

Commit

Permalink
modules: readme files regenerated - ims_qos ...
Browse files Browse the repository at this point in the history
  • Loading branch information
kamailio-dev committed Jun 24, 2016
1 parent 7c0bab8 commit 60e8036
Showing 1 changed file with 25 additions and 4 deletions.
29 changes: 25 additions & 4 deletions modules/ims_qos/README
Expand Up @@ -51,6 +51,7 @@ Carsten Bock
3.10. video_default_bandwidth (integer)
3.11. early_qosrelease_reason (String)
3.12. confirmed_qosrelease_headers (String)
3.13. regex_sdp_ip_prefix_to_maintain_in_fd (String)

4. Functions

Expand All @@ -77,8 +78,9 @@ Carsten Bock
1.10. video_default_bandwidth parameter usage
1.11. early_qosrelease_reason parameter usage
1.12. confirmed_qosrelease_headers parameter usage
1.13. Rx_AAR_Register
1.14. Rx_AAR
1.13. regex_sdp_ip_prefix_to_maintain_in_fd parameter usage
1.14. Rx_AAR_Register
1.15. Rx_AAR

Chapter 1. Admin Guide

Expand All @@ -104,6 +106,7 @@ Chapter 1. Admin Guide
3.10. video_default_bandwidth (integer)
3.11. early_qosrelease_reason (String)
3.12. confirmed_qosrelease_headers (String)
3.13. regex_sdp_ip_prefix_to_maintain_in_fd (String)

4. Functions

Expand Down Expand Up @@ -156,6 +159,7 @@ Chapter 1. Admin Guide
3.10. video_default_bandwidth (integer)
3.11. early_qosrelease_reason (String)
3.12. confirmed_qosrelease_headers (String)
3.13. regex_sdp_ip_prefix_to_maintain_in_fd (String)

3.1. rx_dest_realm (string)

Expand Down Expand Up @@ -311,6 +315,23 @@ modparam("ims_qos", "early_qosrelease_reason", "Sorry - QoS failed")
modparam("ims_qos", "confirmed_qosrelease_headers", "X-Reason: QoS failed\r\n")
...

3.13. regex_sdp_ip_prefix_to_maintain_in_fd (String)

The flow-description AVP is typically populated using IP:port
information present in the SDP. Certain (buggy) UEs can change ports
midway during calls which causes the flow-description to no longer
match the traffic. This parameter allows the flow-description AVP to
use to the any keyword instead of certain IP:port combinations in the
SDP. The parameter is a regex that if set replaces all IPs that do not
match the regex with the any keyword in the flow-description AVP

Default value is "", no IPs replaced

Example 1.13. regex_sdp_ip_prefix_to_maintain_in_fd parameter usage
...
modparam("ims_qos", "regex_sdp_ip_prefix_to_maintain_in_fd", "10.21.0.1")
...

4. Functions

4.1. Rx_AAR_Register(route_block, domain)
Expand Down Expand Up @@ -341,7 +362,7 @@ modparam("ims_qos", "confirmed_qosrelease_headers", "X-Reason: QoS failed\r\n")
p.s. this is executed asynchronously. See example on how to retrieve
return value

Example 1.13. Rx_AAR_Register
Example 1.14. Rx_AAR_Register
...
if(Rx_AAR_Register("REG_AAR_REPLY","location")==0){
exit;
Expand Down Expand Up @@ -383,7 +404,7 @@ route[REG_AAR_REPLY]
p.s. this is executed asynchronously. See example on how to retrieve
return value

Example 1.14. Rx_AAR
Example 1.15. Rx_AAR
...
if(Rx_AAR("ORIG_SESSION_AAR_REPLY","orig","",-1)==0){
exit;
Expand Down

0 comments on commit 60e8036

Please sign in to comment.