Hi!
I am Rubén Mazariegos, a developing engineer at Telefónica R&D. I have
read about your initiative to develop a Kamailio module to act as a SIP
to Jingle gateway (http://jitsi.org/index.php/GSOC2011/KamailioJingle)
last summer during the 2011 edition of Google Summer of Code. I was
wondering if you already have some results from the initiative. Do you
have a web site with further information about this subject?
Thanks and congratulations for your initiative!
Rubén
Este mensaje se dirige exclusivamente a su destinatario. Puede consultar nuestra política de envío y recepción de correo electrónico en el enlace situado más abajo.
This message is intended exclusively for its addressee. We only send and receive email on the basis of the terms set out at.
http://www.tid.es/ES/PAGINAS/disclaimer.aspx
Hi other SR-Devs-
I am making xmlrpc calls from with Kamailio via http_query(url,
response). This is working nicely.
Question 1:
Please, what is the best way to URL encode from within the Kamailio
config file? Got a simple code sample?
Question 2:
I am considering writing an extension to http_query that allows HTTP
POST. This will allow us to send more data than is allowed in a HTTP
GET URL. I'd like this to be my first contribution to the Kamailio
source code. Comments?
Thanks for your time and attention, all!
Regards,
Bruce Stephenson
energyscholar(a)gmail.com
CTO of Starnumber SA
Hi all,
I just want to know, if only Carsten Bock work, on IMS Module ? I only see contribution from him, on his branch : carstenbock/ims
Thanks
Alexis
********************************************************************************
IMPORTANT.Les informations contenues dans ce message electronique y compris les fichiers attaches sont strictement confidentielles
et peuvent etre protegees par la loi.
Ce message electronique est destine exclusivement au(x) destinataire(s) mentionne(s) ci-dessus.
Si vous avez recu ce message par erreur ou s il ne vous est pas destine, veuillez immediatement le signaler a l expediteur et effacer ce message
et tous les fichiers eventuellement attaches.
Toute lecture, exploitation ou transmission des informations contenues dans ce message est interdite.
Tout message electronique est susceptible d alteration.
A ce titre, le Groupe France Telecom decline toute responsabilite notamment s il a ete altere, deforme ou falsifie.
De meme, il appartient au destinataire de s assurer de l absence de tout virus.
IMPORTANT.This e-mail message and any attachments are strictly confidential and may be protected by law. This message is
intended only for the named recipient(s) above.
If you have received this message in error, or are not the named recipient(s), please immediately notify the sender and delete this e-mail message.
Any unauthorized view, usage or disclosure ofthis message is prohibited.
Since e-mail messages may not be reliable, France Telecom Group shall not be liable for any message if modified, changed or falsified.
Additionally the recipient should ensure they are actually virus free.
********************************************************************************
Module: sip-router
Branch: master
Commit: b48bc0977c98e3ee71f4bc44b3f7ed2e1eafce26
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=b48bc09…
Author: pd <peter.dunkley(a)crocodile-rcs.com>
Committer: pd <peter.dunkley(a)crocodile-rcs.com>
Date: Fri Oct 21 15:53:33 2011 +0100
modules_k/rls: the checks on the number of records returned from the DB when updating RLS subscriptions from the configuration file while in db only mode were too strict
---
modules_k/rls/rls_db.c | 15 ---------------
1 files changed, 0 insertions(+), 15 deletions(-)
diff --git a/modules_k/rls/rls_db.c b/modules_k/rls/rls_db.c
index 9c35a28..8adca7b 100644
--- a/modules_k/rls/rls_db.c
+++ b/modules_k/rls/rls_db.c
@@ -488,21 +488,6 @@ int update_all_subs_rlsdb( str *from_user, str *from_domain, str *evt )
nr_rows = RES_ROW_N(result);
- if (nr_rows == 0)
- {
- /* no match */
- LM_ERR( "update_all_subs_rlsdb: NO MATCH\n" );
- rls2_dbf.free_result(rls2_db, result);
- return(-1);
- }
-
- if (nr_rows != 1)
- {
- LM_ERR( "update_all_subs_rlsdb: TOO MANY MATCHES=%d\n", nr_rows);
- rls2_dbf.free_result(rls2_db, result);
- return(-1);
- }
-
/* get the results and fill in return data structure */
for (loop=0; loop <nr_rows; loop++)
{