Module: sip-router Branch: master Commit: c90369b406db09e9e3d9d690ed3d7742b5cc5c48 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=c90369b4...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: Tue Apr 15 14:19:51 2014 +0200
kamailio.cfg: enable_full_lr set to 0
- it is default RFC recommendation and what of most UAs expect today - lr=on was needed for some old UAs that were discontinued meanwhile
---
etc/kamailio.cfg | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/etc/kamailio.cfg b/etc/kamailio.cfg index 73079db..13ceb7a 100644 --- a/etc/kamailio.cfg +++ b/etc/kamailio.cfg @@ -300,8 +300,8 @@ modparam("tm", "fr_inv_timer", 120000)
# ----- rr params ----- -# add value to ;lr param to cope with most of the UAs -modparam("rr", "enable_full_lr", 1) +# set next param to 1 to add value to ;lr param (helps with some UAs) +modparam("rr", "enable_full_lr", 0) # do not append from tag to the RR (no need for this script) modparam("rr", "append_fromtag", 0)
On 16/04/14 08:09, Juha Heinanen wrote:
Daniel-Constantin Mierla writes:
+# set next param to 1 to add value to ;lr param (helps with some UAs) +modparam("rr", "enable_full_lr", 0)
since 0 is the default, perhaps the above two lines could be removed altogether.
Yes, could be removed. I considered that, but then I thought would be easier to spot the change. However, that parameter is no longer needed and actually now confuses some applications (e.g., lync), so it is better to have a cleaner config. Cheers, Daniel