Revision: 6013
http://openser.svn.sourceforge.net/openser/?rev=6013&view=rev
Author: henningw
Date: 2010-06-29 16:08:26 +0000 (Tue, 29 Jun 2010)
Log Message:
-----------
* FS#77: fix BLOBs with postgres, also add a null-termination as the other
SQL databases in order to be able to work with the presence modules
Modified Paths:
--------------
branches/1.5/modules/db_postgres/val.c
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Module: sip-router
Branch: master
Commit: 3a648a8bb05e891e52ca759ffc78c5f1807f6d1e
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=3a648a8…
Author: Ovidiu Sas <osas(a)voipembedded.com>
Committer: Ovidiu Sas <osas(a)voipembedded.com>
Date: Tue Jun 29 10:09:27 2010 -0400
Merge branch 'master' of ssh://osas@git.sip-router.org/sip-router
* 'master' of ssh://osas@git.sip-router.org/sip-router:
auc(k): fix error in authentification: Digest should be compared case insensitive
---
Hello all,
I need to pass the rpc printf params between two modules via a
callback functions.
The current implementation allows passing a pointer during the
callback call and I would like to reuse the existing callback pointer
to pass a everything that I need through it.
I would like to define a new structure for rpc and pass a pointer to
that structure during the callback call:
diff --git a/rpc.h b/rpc.h
index 1434146..ff66b5a 100644
--- a/rpc.h
+++ b/rpc.h
@@ -88,6 +88,10 @@ typedef struct rpc_delayed_ctx{
/* more private data might follow */
} rpc_delayed_ctx_t;
+typedef struct rpc_cb_ctx {
+ rpc_t *rpc;
+ void *c;
+} rpc_cb_ctx_t;
/*
* RPC Function Prototype
This will allow printing mixed info from different modules, in my
particular case, printing qos context info along with dialog context
info (modules_k: dialog and qos).
Since I'm not familiar with the rpc interface, please advice if this
is the right way of doing it or if there is another better
alternative.
Regards,
Ovidiu Sas
Revision: 6012
http://openser.svn.sourceforge.net/openser/?rev=6012&view=rev
Author: henningw
Date: 2010-06-29 10:23:49 +0000 (Tue, 29 Jun 2010)
Log Message:
-----------
* fix error in authentification: Digest should be compared case insensitive
reported from J?\195?\161n ONDREJ (SAL), ondrejj at salstar dot sk
Modified Paths:
--------------
branches/1.5/modules/uac/auth_hdr.c
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.