Changed default value of "anyssrc", accept any incoming SSRC by default even if changes unsignaled.

git-svn-id: http://voip.null.ro/svn/yate@4801 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2012-01-09 21:09:09 +00:00
parent a7c99ccfc0
commit fdcc08b5c1
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@
;autoaddr=enable
; anyssrc: bool: Accept any incoming SSRC, even if it changes frequently
;anyssrc=disable
;anyssrc=enable
; padding: int: Pad the RTP payload to a multiple of this setting
; Supported values are between 2 and 128

View File

@ -1824,7 +1824,7 @@ void YRTPPlugin::initialize()
s_tos = cfg.getIntValue("general","tos",dict_tos);
s_localip = cfg.getValue("general","localip");
s_autoaddr = cfg.getBoolValue("general","autoaddr",true);
s_anyssrc = cfg.getBoolValue("general","anyssrc",false);
s_anyssrc = cfg.getBoolValue("general","anyssrc",true);
s_padding = cfg.getIntValue("general","padding",0);
s_rtcp = cfg.getBoolValue("general","rtcp",true);
s_interval = cfg.getIntValue("general","rtcp_interval",4500);