mirror of
https://github.com/openwrt/telephony.git
synced 2025-05-03 03:19:22 +08:00

Upstream accepted OpenWrt patches, so most can be removed. Other changes: - version handling changed to use PKG_SOURCE_DATE and PKG_SOURCE_VERSION as per OpenWrt package policies [1] - ./files/rtpproxy.config renamed to ./files/rtpproxy.conf also as per OpenWrt package policies [1] - no longer needed Makefile variables dropped (PKG_SOURCE_SUBDIR etc.) - PKG_CHECK_FORMAT_SECURITY:=0 dropped, patch for that upstreamed as well - PKG_BUILD_PARALLEL:=1 added - PKG_LICENSE_FILES updated - dropped bcg729 deactivation hack (fixed by adding bcg729 pkg-config file in other commit) - dependency on libatomic now required - updated rtpproxy-mod-acct-csv TITLE - added --without-xsltproc to CONFIGURE_ARGS to prevent build failure - added new module rtpproxy-mod-acct-rtcp-hep - added utilities extractaudio and makeann - updated patch to prevent debug build of rtpp_acct_rtcp_hep [1] https://openwrt.org/docs/guide-developer/package-policies Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
24 lines
953 B
Plaintext
24 lines
953 B
Plaintext
config rtpproxy global
|
|
option enabled 0 # 0 - disabled, 1 - enabled
|
|
|
|
config instance 'site1'
|
|
option socket 'udp:127.0.0.1:7723' # socket
|
|
option ipaddr '127.0.0.1' # IPv4 address
|
|
option ip6addr '2001:0db8:0000:0000:0000:0000:1428:57ab' # IPv6 address
|
|
option user 'nobody' # userid to run rtpproxy instance from
|
|
option log_level 'INFO' # DBUG, INFO, WARN, ERR or CRIT
|
|
option opts '' # additional options for rtpproxy instance
|
|
|
|
config instance 'site2'
|
|
option socket 'udp:127.0.0.1:7724'
|
|
option ipaddr 'lan/wan' # Bridge mode. 'lan' and 'wan' will be
|
|
option user 'nobody' # translated to IPv4 addresses by init
|
|
option log_level 'DBUG' # script. Handy if using dynamic IPs. Can
|
|
option opts '' # also be used with single interfaces.
|
|
# Translation for both 'ipaddr' and
|
|
# 'ip6addr' supported.
|
|
|
|
config rtpproxy 'hotplug'
|
|
#option interface 'wan' # uncomment to enable hotplug
|
|
|