mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-18 07:48:14 +00:00
Add the "config reload <conffile>" command, which allows you to tell Asterisk
to reload any file that references a given configuration file. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@111012 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1224,7 +1224,7 @@ static void __ast_udptl_reload(int reload)
|
||||
const char *s;
|
||||
struct ast_flags config_flags = { reload ? CONFIG_FLAG_FILEUNCHANGED : 0 };
|
||||
|
||||
if ((cfg = ast_config_load("udptl.conf", config_flags)) == CONFIG_STATUS_FILEUNCHANGED)
|
||||
if ((cfg = ast_config_load2("udptl.conf", "udptl", config_flags)) == CONFIG_STATUS_FILEUNCHANGED)
|
||||
return;
|
||||
|
||||
udptlstart = 4500;
|
||||
@@ -1297,9 +1297,10 @@ static void __ast_udptl_reload(int reload)
|
||||
ast_verb(2, "UDPTL allocating from port range %d -> %d\n", udptlstart, udptlend);
|
||||
}
|
||||
|
||||
void ast_udptl_reload(void)
|
||||
int ast_udptl_reload(void)
|
||||
{
|
||||
__ast_udptl_reload(1);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void ast_udptl_init(void)
|
||||
|
||||
Reference in New Issue
Block a user