main/pbx: Move dialplan application management routines to pbx_app.c.

This is the sixth patch in a series meant to reduce the bulk of pbx.c.
This moves dialplan application management functions to their own source.

Change-Id: I444c10fb90a3cdf9f3047605d6a8aad49c22c44c
This commit is contained in:
Corey Farrell
2016-01-04 20:46:25 -05:00
parent 54a8f1a396
commit 3507494b8a
5 changed files with 524 additions and 448 deletions

View File

@@ -4615,6 +4615,11 @@ static void asterisk_daemon(int isroot, const char *runuser, const char *rungrou
exit(1);
}
if (load_pbx_app()) {
printf("Failed: load_pbx_app\n%s", term_quit());
exit(1);
}
if (ast_local_init()) {
printf("Failed: ast_local_init\n%s", term_quit());
exit(1);