add -c command line arg to run in console mode. Should we change the default on release?

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7350 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2008-01-25 14:08:53 +00:00
parent 321e9a39a7
commit bb2638a514
1 changed files with 5 additions and 0 deletions

View File

@ -242,6 +242,7 @@ int main(int argc, char *argv[])
"\t-nosql -- disable internal sql scoreboard\n"
"\t-stop -- stop freeswitch\n"
"\t-nc -- do not output to a console and background\n"
"\t-c -- output to a console and stay in the foreground\n"
"\t-conf [confdir] -- specify an alternate config dir\n"
"\t-log [logdir] -- specify an alternate log dir\n"
"\t-db [dbdir] -- specify an alternate db dir\n"
@ -341,6 +342,10 @@ int main(int argc, char *argv[])
known_opt++;
}
if (argv[x] && !strcmp(argv[x], "-c")) {
nc = 0;
known_opt++;
}
if (argv[x] && !strcmp(argv[x], "-conf")) {
x++;