Skip to content

Commit

Permalink
media_exchange: add rtpproxy & b2b doc clarifications
Browse files Browse the repository at this point in the history
  • Loading branch information
razvancrainea committed Feb 12, 2020
1 parent 5ea24e5 commit 5f309de
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions modules/media_exchange/doc/media_exchange_admin.xml
Expand Up @@ -40,8 +40,10 @@
or terminated, will just have a copy of the RTP forked by RTPProxy. In
this mode, the proxied call should have had RTPProxy already engaged in
the media path before the forked call starts. One can fork only one
media leg, or both legs.

media leg, or both legs. <emphasis>NOTE:</emphasis> RTPProxy currently
does not support stopping media streaming, therefore if the streaming
call terminates, RTPProxy will continue streaming, even if there is no
one listening on the other end.
</para>
</listitem>
</itemizedlist>
Expand Down Expand Up @@ -204,6 +206,13 @@ if (!has_totag() &amp;&amp; is_method("INVITE"))
<para>
This function can be used from REQUEST_ROUTE.
</para>
<para>
<emphasis>NOTE:</emphasis> the request of this call is completely
handled by the B2B engine. Therefore, after running this function,
please make sure you do not relay the message further, otherwise
you will run into an unexpected behavior. Best thing to do is to
exit the processing after running the function.
</para>
<example>
<title>Use <function>media_send_from_call()</function> function to fork
media to a Media Server</title>
Expand Down Expand Up @@ -303,6 +312,13 @@ if (has_totag() &amp;&amp; is_method("INVITE") &amp;&amp; is_audio_on_hold())
<para>
This function can be used from REQUEST_ROUTE.
</para>
<para>
<emphasis>NOTE:</emphasis> the request of this call is completely
handled by the B2B engine. Therefore, after running this function,
please make sure you do not relay the message further, otherwise
you will run into an unexpected behavior. Best thing to do is to
exit the processing after running the function.
</para>
<example>
<title>Use <function>media_fetch_to_call()</function> function to make
an annoucement</title>
Expand Down

0 comments on commit 5f309de

Please sign in to comment.