aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Diniz <rafael@riseup.net>2019-04-18 20:29:59 -0300
committerRafael Diniz <rafael@riseup.net>2019-04-18 20:29:59 -0300
commit38ab0528b6f95efebe9d481b6e1d6130dc961390 (patch)
tree3b90da6cfcd3079f09d94482b6e265f01f04ec5f
parentc90829c3958e49e70526b5956ea38ed798bf8659 (diff)
Added daemonize feature to osmo-sip-connectorrafael2k/daemonize
-rw-r--r--src/main.c18
1 files changed, 16 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 0661498..ab58a52 100644
--- a/src/main.c
+++ b/src/main.c
@@ -46,6 +46,7 @@
void *tall_mncc_ctx;
+static bool daemonize = false;
static char *config_file = "osmo-sip-connector.cfg";
static struct log_info_cat mncc_sip_categories[] = {
@@ -79,8 +80,9 @@ static const struct log_info mncc_sip_info = {
static void print_help(void)
{
printf("OsmoSIPcon: MNCC to SIP bridge\n");
- printf(" -h --help\tthis text\n");
+ printf(" -h --help\tThis text\n");
printf(" -c --config-file NAME\tThe config file to use [%s]\n", config_file);
+ printf(" -D --daemonize\tFork the process into a background daemon\n");
printf(" -V --version\tPrint the version number\n");
}
@@ -91,11 +93,12 @@ static void handle_options(int argc, char **argv)
static struct option long_options[] = {
{"help", 0, 0, 'h'},
{"config-file", 1, 0, 'c'},
+ {"daemonize", 0, 0, 'D'},
{"version", 0, 0, 'V' },
{NULL, 0, 0, 0}
};
- c = getopt_long(argc, argv, "hc:V",
+ c = getopt_long(argc, argv, "hc:DV",
long_options, &option_index);
if (c == -1)
break;
@@ -107,6 +110,9 @@ static void handle_options(int argc, char **argv)
case 'c':
config_file = optarg;
break;
+ case 'D':
+ daemonize = true;
+ break;
case 'V':
print_version(1);
exit(EXIT_SUCCESS);
@@ -159,6 +165,14 @@ int main(int argc, char **argv)
calls_init();
app_setup(&g_app);
+ if (daemonize) {
+ rc = osmo_daemonize();
+ if (rc < 0) {
+ perror("Error during daemonize");
+ exit(1);
+ }
+ }
+
/* marry sofia-sip to glib and glib to libosmocore */
loop = g_main_loop_new(NULL, FALSE);
g_source_attach(su_glib_root_gsource(g_app.sip.agent.root),