Browse Source

kernel-module/Makefile: install - create the /lib/modules/…/updates directory

… 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
pull/1589/head
Дилян Палаузов 3 years ago
parent
commit
92ef924f5a
3 changed files with 10 additions and 10 deletions
  1. +8
    -8
      daemon/rtpengine.pod
  2. +1
    -1
      iptables-extension/Makefile
  3. +1
    -1
      kernel-module/Makefile

+ 8
- 8
daemon/rtpengine.pod View File

@ -54,7 +54,7 @@ given only once in the config file, with the multiple values separated by
semicolons (see section L<INTERFACES> below for an example). semicolons (see section L<INTERFACES> below for an example).
As a special value, B<none> can be passed here to suppress loading of the As a special value, B<none> can be passed here to suppress loading of the
default config file.
default config file F</etc/rtpengine/rtpengine.conf>.
=item B<--config-section=>I<STRING> =item B<--config-section=>I<STRING>
@ -376,7 +376,7 @@ Enables the B<DTLS=passive> flag for all calls unconditionally.
=item B<-d>, B<--delete-delay=>I<INT> =item B<-d>, B<--delete-delay=>I<INT>
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. Can be set to zero for immediate call deletion.
=item B<-r>, B<--redis=>[I<PW>B<@>]I<IP>B<:>I<PORT>B</>I<INT> =item B<-r>, B<--redis=>[I<PW>B<@>]I<IP>B<:>I<PORT>B</>I<INT>
@ -513,11 +513,11 @@ teardown.
=item B<--max-sessions=>I<INT> =item B<--max-sessions=>I<INT>
Limit the number of maximum concurrent sessions. Limit the number of maximum concurrent sessions.
Set at startup via B<MAX_SESSIONS> in config file.
Set at startup via B<max-sessions> in config file.
Set at runtime via B<rtpengine-ctl> util. Set at runtime via B<rtpengine-ctl> util.
Setting the B<rtpengine-ctl set maxsessions 0> can be used in draining Setting the B<rtpengine-ctl set maxsessions 0> can be used in draining
rtpengine sessions. rtpengine sessions.
Enable feature: B<MAX_SESSIONS=1000>
Enable feature: B<max-sessions=1000>
Enable feature: B<rtpengine-ctl set maxsessions> >= 0 Enable feature: B<rtpengine-ctl set maxsessions> >= 0
Disable feature: B<rtpengine-ctl set maxsessions -1> Disable feature: B<rtpengine-ctl set maxsessions -1>
By default, the feature is disabled (i.e. maxsessions == -1). By default, the feature is disabled (i.e. maxsessions == -1).
@ -1041,10 +1041,10 @@ every I<interval> milliseconds with global stats.
=item B<--mos=>B<CQ>|B<LQ> =item B<--mos=>B<CQ>|B<LQ>
MOS calculation formula. Defaults to B<CQ> (conversational quality) which takes
RTT into account and therefore requires peers to correctly send RTCP. If set to
B<LQ> (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<CQ> (conversational
quality) which takes RTT into account and therefore requires peers to correctly
send RTCP. If set to B<LQ> (listening quality) RTT is ignored, allowing a MOS to
be calculated in the absence of RTCP.
=item B<--measure-rtp> =item B<--measure-rtp>


+ 1
- 1
iptables-extension/Makefile View File

@ -68,4 +68,4 @@ clean:
rm -f libxt_RTPENGINE.so libipt_RTPENGINE.so libip6t_RTPENGINE.so rm -f libxt_RTPENGINE.so libipt_RTPENGINE.so libip6t_RTPENGINE.so
install: 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

+ 1
- 1
kernel-module/Makefile View File

@ -40,5 +40,5 @@ patch:
../utils/patch-kernel magic "$(PWD)" "$(KERNEL)" "$(RTPENGINE_VERSION)" ../utils/patch-kernel magic "$(PWD)" "$(KERNEL)" "$(RTPENGINE_VERSION)"
install: 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 depmod -a

Loading…
Cancel
Save