Thanks Iñaki,
I'm sorry, I'll do it next time.
kind regards,
laura
> 2011/5/30 laura testi <lau.testi(a)gmail.com>:
>> Could you please tell me if I can use the Dispatcher for processing XCAP
>> requests?
>
> Sure not. I recommend you using Nginx HTTP proxy, really efficient and
> a very good choice for HTTP load-balancing and failover.
Anyhow, please use the sr-users mailist for this kind of questions ;)
--
I?aki Baz Castillo
<ibc(a)aliax.net>
------------------------------
_______________________________________________
sr-dev mailing list
sr-dev(a)lists.sip-router.org
http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-dev
End of sr-dev Digest, Vol 32, Issue 1
*************************************
Hi all,
The db_sqlite module is now getting ready for merge to master... It
would be nice if it'd get some scrutiny from other developer before the
merge, though.
So far I've now addressed the earlier comments based on the original
patch, added the docbook notes / README, Natanael Copa contributed the
kamdbctl related work, and Henning Westerholt did the automation of the
SQL script generation from the XML schema.
Unless there's major things, I'm planning to merge with master late this
week.
Thanks,
Timo
Module: sip-router
Branch: 3.1
Commit: 8c763b4f2565dba4f640ab22a83e101946fdbc4e
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=8c763b4…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Wed Jun 1 12:36:09 2011 +0200
imc: keep db handle open for main process
- the module sync's back to database at shutdown
- dicovered based on an email by Ozren Lapcevic
(cherry picked from commit 3402cfd8461c6c94dfc601d9f40116bdbdf8e0a4)
---
modules_k/imc/imc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules_k/imc/imc.c b/modules_k/imc/imc.c
index ccbea01..a948f15 100644
--- a/modules_k/imc/imc.c
+++ b/modules_k/imc/imc.c
@@ -437,7 +437,7 @@ static int mod_init(void)
*/
static int child_init(int rank)
{
- if (rank==PROC_INIT || rank==PROC_MAIN || rank==PROC_TCP_MAIN)
+ if (rank==PROC_INIT || rank==PROC_TCP_MAIN)
return 0; /* do nothing for the main process */
if (imc_dbf.init==0)
Module: sip-router
Branch: master
Commit: 3402cfd8461c6c94dfc601d9f40116bdbdf8e0a4
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=3402cfd…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Wed Jun 1 12:36:09 2011 +0200
imc: keep db handle open for main process
- the module sync's back to database at shutdown
- dicovered based on an email by Ozren Lapcevic
---
modules_k/imc/imc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules_k/imc/imc.c b/modules_k/imc/imc.c
index ccbea01..a948f15 100644
--- a/modules_k/imc/imc.c
+++ b/modules_k/imc/imc.c
@@ -437,7 +437,7 @@ static int mod_init(void)
*/
static int child_init(int rank)
{
- if (rank==PROC_INIT || rank==PROC_MAIN || rank==PROC_TCP_MAIN)
+ if (rank==PROC_INIT || rank==PROC_TCP_MAIN)
return 0; /* do nothing for the main process */
if (imc_dbf.init==0)