sobomax 2009/08/16 00:19:29 CEST
SER CVS Repository
Modified files:
. rtpp_network.c
Log:
Use isxdigit(3) instead of ishexnumber(3). The former belongs to C90
standard, while the latter does not.
Submitted by: Greger Viken Teigre
Revision Changes Path
1.17 +2 -2 rtpproxy/rtpp_network.c
http://cvs.berlios.de/cgi-bin/viewcvs.cgi/ser/rtpproxy/rtpp_network.c.diff?…
sobomax 2009/08/16 01:32:09 CEST
SER CVS Repository
Modified files:
debian rtpproxy.init
Log:
Don't use "basename $0", since init.d subsystem starts RTPproxy using
symbolic link, whose name K20rtpproxy, S20rtpproxy and so on.
Submitted by: Inaki Baz Castillo
Revision Changes Path
1.4 +1 -2 rtpproxy/debian/rtpproxy.init
http://cvs.berlios.de/cgi-bin/viewcvs.cgi/ser/rtpproxy/debian/rtpproxy.init…
Hello,
If we want to make the sip-router core usable in both projects, we would also
need to merge both tls implementations. In SER we moved the the TLS
implementation into tls module.
In Kamailio it appears that the tls implementation is in tls subdirectory in
the core and then there is tlsops module which contains pseudovariables used
to retrieve information from TLS certificates.
Unless somebody has a better idea, I would propose that we merge the tls
implementation from kamailio core into ser tls module. In addition to that we
could merge the implementation of tls related pseudovariables from tlsops into
the tls module and then put the tls module into the sip-router repository.
What do you think? I volunteer to do this if nobody objects.
Jan.
Revision: 5912
http://openser.svn.sourceforge.net/openser/?rev=5912&view=rev
Author: henningw
Date: 2009-08-14 11:57:30 +0000 (Fri, 14 Aug 2009)
Log Message:
-----------
* port from sr: b3e2889f22db1
* filter_body function now takes multipart/mixed boundary string
from Content-Type ;boundary parameter
Modified Paths:
--------------
branches/1.5/modules/textops/textops.c
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 5911
http://openser.svn.sourceforge.net/openser/?rev=5911&view=rev
Author: henningw
Date: 2009-08-11 15:22:17 +0000 (Tue, 11 Aug 2009)
Log Message:
-----------
- fix stupid bug related to the (legacy..) prime_route function
Modified Paths:
--------------
branches/1.4/modules/carrierroute/carrierroute.c
branches/1.5/modules/carrierroute/carrierroute.c
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
sobomax 2009/08/11 01:24:06 CEST
SER CVS Repository
Modified files:
. main.c rtpp_command.c rtpp_defines.h
rtpp_network.c rtpp_network.h
Log:
Introduce automatic bridging functionality. The way it works is that
the RTPproxy expects signalling layer (B2BUA, Sip Proxy etc) to let it
know either local IP for media or remote IP for this particular call
leg. If the local IP is specified, then it will be used verbatim,
otherwise the local address will be determined automatically based
on remote IP and result of dummy connect(2)/getsockname(2) calls.
Both IPv6 and IPv4 addresses are supported.
Internally feature is implemented as an extension to the U/L command.
option "l" should be used for local addresses, or option "r" for remote,
with IPv6 address enclosed into square brackets. For example:
Ul[abcd:efgh:0:1] callid remote_ip remote_port fromtag
Lr1.2.3.4 callid remote_ip remote_port fromtag totag
Changes to OpenSIPS, Kamalio/SER and Sippy B2BUA are to follow.
Sponsored by: Evision GmbH
Revision Changes Path
1.92 +8 -8 rtpproxy/main.c
http://cvs.berlios.de/cgi-bin/viewcvs.cgi/ser/rtpproxy/main.c.diff?r1=1.91&…
1.29 +76 -6 rtpproxy/rtpp_command.c
http://cvs.berlios.de/cgi-bin/viewcvs.cgi/ser/rtpproxy/rtpp_command.c.diff?…
1.27 +7 -1 rtpproxy/rtpp_defines.h
http://cvs.berlios.de/cgi-bin/viewcvs.cgi/ser/rtpproxy/rtpp_defines.h.diff?…
1.16 +97 -2 rtpproxy/rtpp_network.c
http://cvs.berlios.de/cgi-bin/viewcvs.cgi/ser/rtpproxy/rtpp_network.c.diff?…
1.21 +8 -2 rtpproxy/rtpp_network.h
http://cvs.berlios.de/cgi-bin/viewcvs.cgi/ser/rtpproxy/rtpp_network.h.diff?…
Module: sip-router
Branch: master
Commit: 20747a3a7ce264b8f6bef5e79d2d49ba107c6259
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=20747a3…
Author: Jan Janak <jan(a)iptel.org>
Committer: Jan Janak <jan(a)iptel.org>
Date: Fri Aug 7 14:19:36 2009 +0200
auth_identity: Add -lrt and -ldap to the list of libraries
Two more libraries are needed when compiling auth_identity module
statically, -lrt and -lldap.
Reported by MÉSZÁROS Mihály <misi(a)niif.hu>
---
modules_s/auth_identity/Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules_s/auth_identity/Makefile b/modules_s/auth_identity/Makefile
index 9828cbe..f4974b0 100644
--- a/modules_s/auth_identity/Makefile
+++ b/modules_s/auth_identity/Makefile
@@ -13,7 +13,7 @@ LIBS+= -L$(LOCALBASE)/lib -L$(LOCALBASE)/ssl/lib -lssl -lcrypto -lcurl
#
# Static linking, if you'd like to use TLS and AUTH_IDENTITY at the same time
#
-#LIBS+= /usr/lib/libcurl.a /usr/lib/libssl.a /usr/lib/libcrypto.a -lkrb5 -lidn -lz -lgssapi_krb5
+#LIBS+= /usr/lib/libcurl.a /usr/lib/libssl.a /usr/lib/libcrypto.a -lkrb5 -lidn -lz -lgssapi_krb5 -lrt -lldap
DEFS+=-DSER_MOD_INTERFACE
Hi, does/will SR implement TEL URI properly? This is: OpenSer/Kamailio doesn't
support it (just a very basic support).
Also, some useful funtions would be:
- "is_sip?": returns true if RURI has SIP URI.
- "is_sips?": returns true if RURI has SIPS URI.
- "is_sip_ips?": returns true if RURI has SIP or SIPS URI.
- "is_tel?": returns true if RURI has TEL URI.
Regards.
--
Iñaki Baz Castillo <ibc(a)aliax.net>