From 21c219bcdd3f74a029582cd353c5f91d91a46f3d Mon Sep 17 00:00:00 2001 From: Mikko Lehto Date: Wed, 23 May 2018 22:11:00 +0300 Subject: [PATCH] rtpproxy: mark RPC call with proper tag and small typo fix --- src/modules/rtpproxy/doc/rtpproxy_admin.xml | 4 ++-- src/modules/rtpproxy/rtpproxy.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/rtpproxy/doc/rtpproxy_admin.xml b/src/modules/rtpproxy/doc/rtpproxy_admin.xml index 618f7938ef7..d7f9b6de153 100644 --- a/src/modules/rtpproxy/doc/rtpproxy_admin.xml +++ b/src/modules/rtpproxy/doc/rtpproxy_admin.xml @@ -98,7 +98,7 @@
<varname>rtpproxy_sock</varname> (string) - Used to define the list of RTPPRoxy instances to connect to. + Used to define the list of RTPProxy instances to connect to. These can be UNIX sockets or IPv4/IPv6 UDP sockets. Each modparam entry will insert sockets into a single set. If no set ID is given, the default set ID '0' will be used. To define multiple sets add the set number at the beginning of each parameter followed by '=='. @@ -873,7 +873,7 @@ start_recording();
RPC Commands
- rtpproxy.enable + <function>rtpproxy.enable</function> Enables a rtp proxy if parameter value is greater than 0. Disables it if a zero value is given. diff --git a/src/modules/rtpproxy/rtpproxy.c b/src/modules/rtpproxy/rtpproxy.c index 4251a9ac82e..b0b7a67fcf4 100644 --- a/src/modules/rtpproxy/rtpproxy.c +++ b/src/modules/rtpproxy/rtpproxy.c @@ -169,7 +169,7 @@ static int_str ice_candidate_priority_avp; static str rtp_inst_pv_param = {NULL, 0}; static pv_spec_t *rtp_inst_pvar = NULL; -/* array with the sockets used by rtpporxy (per process)*/ +/* array with the sockets used by rtpproxy (per process)*/ static unsigned int rtpp_no = 0; static int *rtpp_socks = 0;