2005-11-19 20:07:43 +00:00
|
|
|
/*
|
|
|
|
* FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
|
|
|
|
* Copyright (C) 2005/2006, Anthony Minessale II <anthmct@yahoo.com>
|
|
|
|
*
|
|
|
|
* Version: MPL 1.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Anthony Minessale II <anthmct@yahoo.com>
|
|
|
|
* Portions created by the Initial Developer are Copyright (C)
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Anthony Minessale II <anthmct@yahoo.com>
|
2006-09-18 05:08:55 +00:00
|
|
|
* Michael Jerris <mike@jerris.com>
|
2007-01-19 12:59:49 +00:00
|
|
|
* Pawel Pierscionek <pawel@voiceworks.pl>
|
2007-02-06 17:05:14 +00:00
|
|
|
* Bret McDanel <trixter AT 0xdecafbad.com>
|
2005-11-19 20:07:43 +00:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* switch.c -- Main
|
|
|
|
*
|
|
|
|
*/
|
2006-02-28 21:21:48 +00:00
|
|
|
|
2005-11-19 20:07:43 +00:00
|
|
|
#include <switch.h>
|
2006-08-18 21:57:47 +00:00
|
|
|
|
2006-10-30 01:36:51 +00:00
|
|
|
//pid filename: Stores the process id of the freeswitch process
|
2006-08-18 21:57:47 +00:00
|
|
|
#define PIDFILE "freeswitch.pid"
|
2006-10-30 01:36:51 +00:00
|
|
|
static char *pfile = PIDFILE;
|
2006-09-20 20:25:26 +00:00
|
|
|
|
2006-10-30 01:36:51 +00:00
|
|
|
//log filename: Filename of the freeswitch log file to be used if we are in background mode
|
|
|
|
#define LOGFILE "freeswitch.log"
|
2006-08-18 21:57:47 +00:00
|
|
|
static char *lfile = LOGFILE;
|
2006-10-30 01:36:51 +00:00
|
|
|
|
|
|
|
//If we are a windows service, what should we be called
|
2006-08-20 03:04:55 +00:00
|
|
|
#define SERVICENAME "Freeswitch"
|
2006-08-18 21:57:47 +00:00
|
|
|
|
2006-10-30 01:36:51 +00:00
|
|
|
//Picky compiler
|
2006-08-18 21:57:47 +00:00
|
|
|
#ifdef __ICC
|
|
|
|
#pragma warning (disable:167)
|
|
|
|
#endif
|
2006-02-23 22:41:08 +00:00
|
|
|
|
2006-08-19 18:51:22 +00:00
|
|
|
#ifdef WIN32
|
2006-08-20 03:04:55 +00:00
|
|
|
#include <winsock2.h>
|
|
|
|
#include <windows.h>
|
2006-10-30 01:36:51 +00:00
|
|
|
|
|
|
|
//event to signal shutdown (for you unix people, this is like a pthread_cond)
|
2006-08-19 18:51:22 +00:00
|
|
|
static HANDLE shutdown_event;
|
|
|
|
#endif
|
2006-02-26 03:13:01 +00:00
|
|
|
|
2006-10-30 01:36:51 +00:00
|
|
|
//signal handler for when freeswitch is running in background mode.
|
|
|
|
//signal triggers the shutdown of freeswitch
|
2006-10-02 16:48:00 +00:00
|
|
|
static void handle_SIGHUP(int sig)
|
2006-02-23 22:41:08 +00:00
|
|
|
{
|
2006-09-20 20:25:26 +00:00
|
|
|
uint32_t arg = 0;
|
2006-03-30 23:02:50 +00:00
|
|
|
if(sig);
|
2006-10-30 01:36:51 +00:00
|
|
|
//send shutdown signal to the freeswitch core
|
2006-09-20 20:25:26 +00:00
|
|
|
switch_core_session_ctl(SCSC_SHUTDOWN, &arg);
|
2006-10-02 16:48:00 +00:00
|
|
|
return;
|
2006-02-23 22:41:08 +00:00
|
|
|
}
|
|
|
|
|
2006-10-30 01:36:51 +00:00
|
|
|
//kill a freeswitch process running in background mode
|
2006-08-18 21:57:47 +00:00
|
|
|
static int freeswitch_kill_background()
|
|
|
|
{
|
2006-10-30 01:36:51 +00:00
|
|
|
FILE *f; //FILE handle to open the pid file
|
|
|
|
char path[256] = ""; //full path of the PID file
|
|
|
|
pid_t pid = 0; //pid from the pid file
|
|
|
|
|
|
|
|
//set the globals so we can use the global paths.
|
2006-08-20 03:04:55 +00:00
|
|
|
switch_core_set_globals();
|
2006-10-30 01:36:51 +00:00
|
|
|
|
|
|
|
//get the full path of the pid file.
|
2006-08-18 21:57:47 +00:00
|
|
|
snprintf(path, sizeof(path), "%s%s%s", SWITCH_GLOBAL_dirs.log_dir, SWITCH_PATH_SEPARATOR, pfile);
|
2006-10-30 01:36:51 +00:00
|
|
|
|
|
|
|
//open the pid file
|
2006-08-18 21:57:47 +00:00
|
|
|
if ((f = fopen(path, "r")) == 0) {
|
2006-10-30 01:36:51 +00:00
|
|
|
//pid file does not exist
|
2006-08-18 21:57:47 +00:00
|
|
|
fprintf(stderr, "Cannot open pid file %s.\n", path);
|
2006-03-01 17:06:10 +00:00
|
|
|
return 255;
|
|
|
|
}
|
2006-10-30 01:36:51 +00:00
|
|
|
|
|
|
|
//pull the pid from the file
|
2006-08-18 21:57:47 +00:00
|
|
|
fscanf(f, "%d", &pid);
|
2006-10-30 01:36:51 +00:00
|
|
|
|
|
|
|
//if we have a valid pid
|
2006-08-18 21:57:47 +00:00
|
|
|
if (pid > 0) {
|
2006-10-30 01:36:51 +00:00
|
|
|
|
|
|
|
//kill the freeswitch running at the pid we found
|
2006-08-19 18:51:22 +00:00
|
|
|
fprintf(stderr, "Killing: %d\n", (int) pid);
|
|
|
|
#ifdef WIN32
|
2006-10-30 01:36:51 +00:00
|
|
|
//for windows we need the event to signal for shutting down a background freewitc
|
2006-08-19 18:51:22 +00:00
|
|
|
snprintf(path, sizeof(path), "Global\\Freeswitch.%d", pid);
|
2006-10-30 01:36:51 +00:00
|
|
|
|
|
|
|
//open the event so we can signal it
|
2006-08-19 19:00:35 +00:00
|
|
|
shutdown_event = OpenEvent(EVENT_MODIFY_STATE, FALSE, path);
|
2006-10-30 01:36:51 +00:00
|
|
|
|
|
|
|
//did we sucessfully open the event
|
2006-08-19 19:00:35 +00:00
|
|
|
if (!shutdown_event) {
|
|
|
|
/* we can't get the event, so we can't signal the process to shutdown */
|
2006-08-19 18:51:22 +00:00
|
|
|
fprintf(stderr, "ERROR: Can't Shutdown: %d\n", (int) pid);
|
2006-08-19 19:00:35 +00:00
|
|
|
} else {
|
2006-10-30 01:36:51 +00:00
|
|
|
//signal the event to shutdown
|
2006-08-19 19:00:35 +00:00
|
|
|
SetEvent(shutdown_event);
|
|
|
|
}
|
2006-10-30 01:36:51 +00:00
|
|
|
//cleanup
|
2006-08-19 19:00:35 +00:00
|
|
|
CloseHandle(shutdown_event);
|
2006-08-19 18:51:22 +00:00
|
|
|
#else
|
2006-10-30 01:36:51 +00:00
|
|
|
//for unix, send the signal to kill.
|
2006-08-18 21:57:47 +00:00
|
|
|
kill(pid, SIGTERM);
|
2006-03-30 23:02:50 +00:00
|
|
|
#endif
|
2006-08-18 21:57:47 +00:00
|
|
|
}
|
2006-03-01 17:06:10 +00:00
|
|
|
|
2006-10-30 01:36:51 +00:00
|
|
|
//be nice and close the file handle to the pid file
|
2006-08-19 18:51:22 +00:00
|
|
|
fclose(f);
|
2006-10-30 01:36:51 +00:00
|
|
|
|
2006-08-18 21:57:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2006-08-11 23:27:08 +00:00
|
|
|
|
2006-08-20 03:04:55 +00:00
|
|
|
#ifdef WIN32
|
2006-10-30 01:36:51 +00:00
|
|
|
|
|
|
|
//we need these vars to handle the service
|
2006-08-20 03:36:14 +00:00
|
|
|
SERVICE_STATUS_HANDLE hStatus;
|
|
|
|
SERVICE_STATUS status;
|
|
|
|
|
2006-10-30 01:36:51 +00:00
|
|
|
//Handler function for service start/stop from the service
|
2006-08-20 03:36:14 +00:00
|
|
|
void WINAPI ServiceCtrlHandler( DWORD control )
|
|
|
|
{
|
2006-10-30 01:36:51 +00:00
|
|
|
switch( control )
|
|
|
|
{
|
|
|
|
case SERVICE_CONTROL_SHUTDOWN:
|
|
|
|
case SERVICE_CONTROL_STOP:
|
2006-11-05 19:41:03 +00:00
|
|
|
//Shutdown freeswitch
|
2006-11-18 06:43:37 +00:00
|
|
|
switch_core_destroy(0);
|
2006-11-05 19:41:03 +00:00
|
|
|
//set service status valuse
|
2006-10-30 01:36:51 +00:00
|
|
|
status.dwCurrentState = SERVICE_STOPPED;
|
|
|
|
status.dwWin32ExitCode = 0;
|
|
|
|
status.dwCheckPoint = 0;
|
|
|
|
status.dwWaitHint = 0;
|
|
|
|
break;
|
|
|
|
case SERVICE_CONTROL_INTERROGATE:
|
2006-11-05 19:41:03 +00:00
|
|
|
// we already set the service status every time it changes.
|
|
|
|
// if there are other times we change it and don't update, we should do so here
|
2006-10-30 01:36:51 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
SetServiceStatus( hStatus, &status );
|
2006-08-20 03:36:14 +00:00
|
|
|
}
|
|
|
|
|
2006-11-05 19:41:03 +00:00
|
|
|
//the main service entry point
|
2006-08-20 03:36:14 +00:00
|
|
|
void WINAPI service_main( DWORD numArgs, char **args )
|
|
|
|
{
|
2006-11-05 19:41:03 +00:00
|
|
|
const char *err = NULL; //error value for return from freeswitch initialization
|
2006-10-30 01:36:51 +00:00
|
|
|
// we have to initialize the service-specific stuff
|
|
|
|
memset( &status, 0, sizeof(SERVICE_STATUS) );
|
|
|
|
status.dwServiceType = SERVICE_WIN32;
|
|
|
|
status.dwCurrentState = SERVICE_START_PENDING;
|
|
|
|
status.dwControlsAccepted = SERVICE_ACCEPT_STOP;
|
2006-08-20 03:36:14 +00:00
|
|
|
|
2006-11-05 19:41:03 +00:00
|
|
|
//register our handler for service control messages
|
2006-10-30 01:36:51 +00:00
|
|
|
hStatus = RegisterServiceCtrlHandler( SERVICENAME, &ServiceCtrlHandler );
|
2006-08-20 03:36:14 +00:00
|
|
|
|
2006-11-05 19:41:03 +00:00
|
|
|
//update the service status
|
2006-10-30 01:36:51 +00:00
|
|
|
SetServiceStatus( hStatus, &status );
|
2006-11-05 19:41:03 +00:00
|
|
|
|
|
|
|
//run freeswitch with elevated priority
|
2006-08-20 03:04:55 +00:00
|
|
|
set_high_priority();
|
2006-11-05 19:41:03 +00:00
|
|
|
|
|
|
|
//attempt to initialize freeswitch and load modules
|
2006-08-20 03:04:55 +00:00
|
|
|
if (switch_core_init_and_modload(lfile, &err) != SWITCH_STATUS_SUCCESS) {
|
2006-11-05 19:41:03 +00:00
|
|
|
//freeswitch did not start sucessfully
|
2006-10-30 01:36:51 +00:00
|
|
|
status.dwCurrentState = SERVICE_STOPPED;
|
2006-08-20 03:04:55 +00:00
|
|
|
} else {
|
2006-11-05 19:41:03 +00:00
|
|
|
//freeswitch started
|
2006-08-20 03:04:55 +00:00
|
|
|
status.dwCurrentState = SERVICE_RUNNING;
|
|
|
|
}
|
2006-08-20 03:36:14 +00:00
|
|
|
|
2006-11-05 19:41:03 +00:00
|
|
|
//update the service status
|
2006-10-30 01:36:51 +00:00
|
|
|
SetServiceStatus( hStatus, &status );
|
2006-08-20 03:36:14 +00:00
|
|
|
}
|
|
|
|
|
2006-08-20 03:04:55 +00:00
|
|
|
#endif
|
|
|
|
|
2006-11-05 19:41:03 +00:00
|
|
|
//the main application entry point
|
2006-08-18 21:57:47 +00:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2006-11-05 19:41:03 +00:00
|
|
|
char pid_path[256] = ""; // full path to the pid file
|
|
|
|
const char *err = NULL; // error value for return from freeswitch initialization
|
2007-01-19 22:47:23 +00:00
|
|
|
#ifndef WIN32
|
|
|
|
int nf = 0; // TRUE if we are running in nofork mode
|
2007-02-06 19:20:39 +00:00
|
|
|
int vg = 0; // Allways TRUE on windows to not do apr_terminate
|
2007-01-22 17:45:09 +00:00
|
|
|
#else
|
2007-02-06 19:20:39 +00:00
|
|
|
int vg = 1; // TRUE if we are running in vg mode
|
2007-01-19 22:47:23 +00:00
|
|
|
#endif
|
|
|
|
int nc = 0; // TRUE if we are running in noconsole mode
|
2006-11-05 19:41:03 +00:00
|
|
|
FILE *f; // file handle to the pid file
|
|
|
|
pid_t pid = 0; //
|
|
|
|
int x; //
|
|
|
|
int die = 0; //
|
2007-02-06 17:05:14 +00:00
|
|
|
char *usageDesc;
|
|
|
|
int alt_dirs = 0;
|
2006-05-05 13:35:33 +00:00
|
|
|
|
2006-08-20 03:04:55 +00:00
|
|
|
#ifdef WIN32
|
2006-10-30 01:36:51 +00:00
|
|
|
SERVICE_TABLE_ENTRY dispatchTable[] =
|
|
|
|
{
|
|
|
|
{ SERVICENAME, &service_main },
|
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
2007-02-06 17:05:14 +00:00
|
|
|
usageDesc = "these are the optional arguments you can pass to freeswitch\n"
|
|
|
|
"\t-service -- start freeswitch as a service, cannot be used if loaded as a console app\n"
|
|
|
|
"\t-install -- install freeswitch as a service\n"
|
|
|
|
"\t-uninstall -- remove freeswitch as a service\n"
|
|
|
|
"\t-hp -- enable high priority settings\n"
|
|
|
|
"\t-stop -- stop freeswitch\n"
|
|
|
|
"\t-nc -- do not output to a console and background\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";
|
|
|
|
#else
|
|
|
|
usageDesc = "these are the optional arguments you can pass to freeswitch\n"
|
|
|
|
"\t-help -- this message\n"
|
|
|
|
"\t-nf -- no forking\n"
|
|
|
|
"\t-hp -- enable high priority settings\n"
|
|
|
|
"\t-stop -- stop freeswitch\n"
|
|
|
|
"\t-nc -- do not output to a console and background\n"
|
|
|
|
"\t-vg -- enable valgrind mode\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";
|
|
|
|
|
2006-09-20 20:25:26 +00:00
|
|
|
#endif
|
2006-08-20 03:04:55 +00:00
|
|
|
|
2006-09-20 20:25:26 +00:00
|
|
|
for (x = 1; x < argc; x++) {
|
2007-02-06 17:05:14 +00:00
|
|
|
if (argv[x] && !strcmp(argv[x], "-help")) {
|
|
|
|
printf("%s\n",usageDesc);
|
|
|
|
exit(0);
|
|
|
|
}
|
2006-09-20 20:25:26 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
if (x == 1) {
|
|
|
|
if (argv[x] && !strcmp(argv[x], "-service")) {
|
2006-10-30 01:36:51 +00:00
|
|
|
if(StartServiceCtrlDispatcher( dispatchTable ) == 0 ) {
|
|
|
|
//Not loaded as a service
|
|
|
|
fprintf(stderr, "Error Freeswitch loaded as a console app with -service option\n");
|
|
|
|
fprintf(stderr, "To install the service load freeswitch with -install\n");
|
|
|
|
}
|
2006-09-20 20:25:26 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
if (argv[x] && !strcmp(argv[x], "-install")) {
|
|
|
|
char exePath[1024];
|
|
|
|
char servicePath[1024];
|
|
|
|
|
|
|
|
SC_HANDLE handle = OpenSCManager( NULL, NULL, SC_MANAGER_ALL_ACCESS );
|
|
|
|
GetModuleFileName( NULL, exePath, 1024 );
|
|
|
|
snprintf(servicePath, sizeof(servicePath), "%s -service", exePath);
|
|
|
|
CreateService(
|
2006-10-30 01:36:51 +00:00
|
|
|
handle,
|
|
|
|
SERVICENAME,
|
|
|
|
SERVICENAME,
|
|
|
|
GENERIC_READ | GENERIC_EXECUTE,
|
|
|
|
SERVICE_WIN32_OWN_PROCESS,
|
|
|
|
SERVICE_AUTO_START,
|
|
|
|
SERVICE_ERROR_IGNORE,
|
|
|
|
servicePath,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
);
|
2006-09-20 20:25:26 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
if (argv[x] && !strcmp(argv[x], "-uninstall")) {
|
|
|
|
SC_HANDLE handle = OpenSCManager( NULL, NULL, SC_MANAGER_ALL_ACCESS );
|
|
|
|
SC_HANDLE service = OpenService( handle, SERVICENAME, DELETE );
|
2006-10-30 01:36:51 +00:00
|
|
|
if( service != NULL ) {
|
|
|
|
// remove the service!
|
|
|
|
DeleteService( service );
|
|
|
|
}
|
2006-09-20 20:25:26 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
2006-08-20 03:36:14 +00:00
|
|
|
}
|
2007-01-19 12:59:49 +00:00
|
|
|
#else
|
2007-01-19 22:47:23 +00:00
|
|
|
|
|
|
|
if (argv[x] && !strcmp(argv[x], "-nf")) {
|
|
|
|
nf++;
|
2007-01-19 12:59:49 +00:00
|
|
|
}
|
2006-08-20 03:04:55 +00:00
|
|
|
#endif
|
2006-09-20 20:25:26 +00:00
|
|
|
if (argv[x] && !strcmp(argv[x], "-hp")) {
|
|
|
|
set_high_priority();
|
|
|
|
}
|
2006-10-30 01:36:51 +00:00
|
|
|
|
2006-09-20 20:25:26 +00:00
|
|
|
if (argv[x] && !strcmp(argv[x], "-stop")) {
|
|
|
|
die++;
|
|
|
|
}
|
2006-08-20 03:04:55 +00:00
|
|
|
|
2006-09-20 20:25:26 +00:00
|
|
|
if (argv[x] && !strcmp(argv[x], "-nc")) {
|
2007-01-19 22:47:23 +00:00
|
|
|
nc++;
|
|
|
|
}
|
2006-11-16 19:43:25 +00:00
|
|
|
|
|
|
|
if (argv[x] && !strcmp(argv[x], "-vg")) {
|
|
|
|
vg++;
|
|
|
|
}
|
2007-02-06 17:05:14 +00:00
|
|
|
|
|
|
|
if (argv[x] && !strcmp(argv[x], "-conf")) {
|
|
|
|
x++;
|
|
|
|
if (argv[x] && strlen(argv[x])) {
|
|
|
|
SWITCH_GLOBAL_dirs.conf_dir = (char *) malloc(strlen(argv[x])+1);
|
|
|
|
strcpy(SWITCH_GLOBAL_dirs.conf_dir,argv[x]);
|
|
|
|
alt_dirs++;
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "When using -conf you must specify a config directory\n");
|
|
|
|
return 255;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argv[x] && !strcmp(argv[x], "-log")) {
|
|
|
|
x++;
|
|
|
|
if (argv[x] && strlen(argv[x])) {
|
|
|
|
SWITCH_GLOBAL_dirs.log_dir = (char *) malloc(strlen(argv[x])+1);
|
|
|
|
strcpy(SWITCH_GLOBAL_dirs.log_dir,argv[x]);
|
|
|
|
alt_dirs++;
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "When using -log you must specify a log directory\n");
|
|
|
|
return 255;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argv[x] && !strcmp(argv[x], "-db")) {
|
|
|
|
x++;
|
|
|
|
if (argv[x] && strlen(argv[x])) {
|
|
|
|
SWITCH_GLOBAL_dirs.db_dir = (char *) malloc(strlen(argv[x])+1);
|
|
|
|
strcpy(SWITCH_GLOBAL_dirs.db_dir,argv[x]);
|
|
|
|
alt_dirs++;
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "When using -db you must specify a db directory\n");
|
|
|
|
return 255;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-18 21:57:47 +00:00
|
|
|
}
|
|
|
|
|
2006-09-20 20:25:26 +00:00
|
|
|
if (die) {
|
|
|
|
return freeswitch_kill_background();
|
2006-08-18 21:57:47 +00:00
|
|
|
}
|
2005-11-19 20:07:43 +00:00
|
|
|
|
2007-02-06 17:05:14 +00:00
|
|
|
if (alt_dirs && alt_dirs !=3) {
|
|
|
|
fprintf(stderr, "You must use -conf, -log, and -db together\n");
|
|
|
|
return 255;
|
|
|
|
}
|
|
|
|
|
2007-01-19 12:59:49 +00:00
|
|
|
if (nc) {
|
2006-08-18 21:57:47 +00:00
|
|
|
|
2006-10-02 16:48:00 +00:00
|
|
|
signal(SIGHUP, handle_SIGHUP);
|
|
|
|
signal(SIGTERM, handle_SIGHUP);
|
2006-08-18 21:57:47 +00:00
|
|
|
|
2006-02-26 03:13:01 +00:00
|
|
|
#ifdef WIN32
|
2006-08-18 21:57:47 +00:00
|
|
|
FreeConsole();
|
|
|
|
#else
|
2007-01-19 22:47:23 +00:00
|
|
|
if (!nf && (pid = fork())) {
|
2006-08-18 21:57:47 +00:00
|
|
|
fprintf(stderr, "%d Backgrounding.\n", (int)pid);
|
|
|
|
exit(0);
|
2006-02-26 03:13:01 +00:00
|
|
|
}
|
|
|
|
#endif
|
2006-02-23 22:41:08 +00:00
|
|
|
}
|
2006-08-18 21:57:47 +00:00
|
|
|
|
2007-01-19 12:59:49 +00:00
|
|
|
if (switch_core_init_and_modload(nc ? lfile : NULL, &err) != SWITCH_STATUS_SUCCESS) {
|
2006-08-18 21:57:47 +00:00
|
|
|
fprintf(stderr, "Cannot Initilize [%s]\n", err);
|
|
|
|
return 255;
|
|
|
|
}
|
|
|
|
|
2006-11-05 19:41:03 +00:00
|
|
|
snprintf(pid_path, sizeof(pid_path), "%s%s%s", SWITCH_GLOBAL_dirs.log_dir, SWITCH_PATH_SEPARATOR, pfile);
|
|
|
|
if ((f = fopen(pid_path, "w")) == 0) {
|
|
|
|
fprintf(stderr, "Cannot open pid file %s.\n", pid_path);
|
2006-08-20 03:04:55 +00:00
|
|
|
return 255;
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(f, "%d", pid = getpid());
|
|
|
|
fclose(f);
|
|
|
|
|
2007-01-19 12:59:49 +00:00
|
|
|
switch_core_runtime_loop(nc);
|
2006-08-18 21:57:47 +00:00
|
|
|
|
2006-11-16 19:43:25 +00:00
|
|
|
return switch_core_destroy(vg);
|
2005-11-19 20:07:43 +00:00
|
|
|
}
|
2006-11-27 22:30:48 +00:00
|
|
|
|
|
|
|
/* For Emacs:
|
|
|
|
* Local Variables:
|
|
|
|
* mode:c
|
2007-02-09 02:36:03 +00:00
|
|
|
* indent-tabs-mode:t
|
2006-11-27 22:30:48 +00:00
|
|
|
* tab-width:4
|
|
|
|
* c-basic-offset:4
|
|
|
|
* End:
|
|
|
|
* For VIM:
|
|
|
|
* vim:set softtabstop=4 shiftwidth=4 tabstop=4 expandtab:
|
|
|
|
*/
|