Module: sip-router Branch: master Commit: c78d1ce9d3b01a03133d09a8f762b5dfd221eded URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=c78d1ce9...
Author: Richard Good richard.good@smilecoms.com Committer: Richard Good richard.good@smilecoms.com Date: Wed Oct 29 11:05:35 2014 +0200
modules/ims_qos: Changed Rx event process from PROC_SIPINIT to PROC_MIN
---
modules/ims_qos/mod.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/ims_qos/mod.c b/modules/ims_qos/mod.c index a3923e6..dcea09e 100644 --- a/modules/ims_qos/mod.c +++ b/modules/ims_qos/mod.c @@ -232,7 +232,7 @@ static int mod_child_init(int rank) { LM_DBG("Initialization of module in child [%d] \n", rank);
if (rank == PROC_MAIN) { - int pid = fork_process(PROC_SIPINIT, "Rx Event Processor", 1); + int pid = fork_process(PROC_MIN, "Rx Event Processor", 1); if (pid < 0) return -1; //error if (pid == 0) {