mirror of
https://github.com/asterisk/asterisk.git
synced 2026-07-03 05:23:26 -07:00
Make trunkfreq take effect when set
Previously, setting trunkfreq had no effect on initial load or on reload and only ever used the default value. This causes trunkfreq to be used appropriately on initial load and reload. (closes issue ASTERISK-19521) Patch-by: Jaco Kroon ........ Merged revisions 361972 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 361981 from http://svn.asterisk.org/svn/asterisk/branches/10 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@361987 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -13258,6 +13258,9 @@ static int set_config(const char *config_file, int reload)
|
||||
ast_log(LOG_NOTICE, "trunkfreq must be between 10ms and 1000ms, using 1000ms instead.\n");
|
||||
trunkfreq = 1000;
|
||||
}
|
||||
if (timer) {
|
||||
ast_timer_set_rate(timer, 1000 / trunkfreq);
|
||||
}
|
||||
} else if (!strcasecmp(v->name, "trunkmtu")) {
|
||||
mtuv = atoi(v->value);
|
||||
if (mtuv == 0 )
|
||||
|
||||
Reference in New Issue
Block a user