From 92ef924f5ac07d62b79be34a987ec5ef1839eba3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Tue, 10 Jan 2023 20:56:26 +0000 Subject: [PATCH] =?UTF-8?q?kernel-module/Makefile:=20install=20-=20create?= =?UTF-8?q?=20the=20/lib/modules/=E2=80=A6/updates=20directory?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit … if it does not exist. Likewise in iptables-extension/Makefile . daemon/rtpengine.pod: spell what MOS means MAX_SESSIONS in config file does not work, it must be max-sessions. https://github.com/sipwise/rtpengine/pull/1589 --- daemon/rtpengine.pod | 16 ++++++++-------- iptables-extension/Makefile | 2 +- kernel-module/Makefile | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/daemon/rtpengine.pod b/daemon/rtpengine.pod index 3a881fc99..0b7772d08 100644 --- a/daemon/rtpengine.pod +++ b/daemon/rtpengine.pod @@ -54,7 +54,7 @@ given only once in the config file, with the multiple values separated by semicolons (see section L below for an example). As a special value, B can be passed here to suppress loading of the -default config file. +default config file F. =item B<--config-section=>I @@ -376,7 +376,7 @@ Enables the B flag for all calls unconditionally. =item B<-d>, B<--delete-delay=>I -Delete the call from memory after the specified delay from memory. +Delete the call after the specified delay from memory. Can be set to zero for immediate call deletion. =item B<-r>, B<--redis=>[IB<@>]IB<:>IBI @@ -513,11 +513,11 @@ teardown. =item B<--max-sessions=>I Limit the number of maximum concurrent sessions. -Set at startup via B in config file. +Set at startup via B in config file. Set at runtime via B util. Setting the B can be used in draining rtpengine sessions. -Enable feature: B +Enable feature: B Enable feature: B >= 0 Disable feature: B By default, the feature is disabled (i.e. maxsessions == -1). @@ -1041,10 +1041,10 @@ every I milliseconds with global stats. =item B<--mos=>B|B -MOS calculation formula. Defaults to B (conversational quality) which takes -RTT into account and therefore requires peers to correctly send RTCP. If set to -B (listening quality) RTT is ignored, allowing a MOS to be calculated in -the absence of RTCP. +MOS (Mean Opinion Score) calculation formula. Defaults to B (conversational +quality) which takes RTT into account and therefore requires peers to correctly +send RTCP. If set to B (listening quality) RTT is ignored, allowing a MOS to +be calculated in the absence of RTCP. =item B<--measure-rtp> diff --git a/iptables-extension/Makefile b/iptables-extension/Makefile index 4c9a0336c..cf70fd646 100644 --- a/iptables-extension/Makefile +++ b/iptables-extension/Makefile @@ -68,4 +68,4 @@ clean: rm -f libxt_RTPENGINE.so libipt_RTPENGINE.so libip6t_RTPENGINE.so install: - install libxt_RTPENGINE.so $(DESTDIR)$(shell pkg-config xtables --variable=xtlibdir) + install -D libxt_RTPENGINE.so $(DESTDIR)$(shell pkg-config xtables --variable=xtlibdir)/libxt_RTPENGINE.so diff --git a/kernel-module/Makefile b/kernel-module/Makefile index ef2a86b11..72ab0ceea 100644 --- a/kernel-module/Makefile +++ b/kernel-module/Makefile @@ -40,5 +40,5 @@ patch: ../utils/patch-kernel magic "$(PWD)" "$(KERNEL)" "$(RTPENGINE_VERSION)" install: - install xt_RTPENGINE.ko $(DESTDIR)/lib/modules/$(shell uname -r)/updates + install -D xt_RTPENGINE.ko $(DESTDIR)/lib/modules/$(shell uname -r)/updates/xt_RTPENGINE.ko depmod -a