Module: sip-router
Branch: andrei/switch
Commit: 4221104f5cb3f60866d13ceedf05f00c62c0160f
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=4221104…
Author: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Committer: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Date: Wed Feb 4 20:48:04 2009 +0100
script engine: switch() fixup and optimizations
- optimize/transform switch() statements into:
- jump tables (if small enough)
- condition tables
- simple blocks (optimization when the expression in switch()
is constant)
- only a condition evaluator (when the switch body is empty,
but the switch expression has side-effect and hence cannot be
optimized away)
---
route.c | 25 ++++-
switch.c | 374 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 398 insertions(+), 1 deletions(-)
Diff: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commitdiff;h=422…
Hello,
a bunch of us will be at FOSDEM 2009:
http://fosdem.org/2009/
Therefore is the opportunity for first Social Networking Event in 2009.
Everyone interested in Kamailio (OpenSER), SIP Router, SER, SIP and not
only are invited to join -- participation is free, everybody pays for
its expenses. The event is very likely to be a dinner on Saturday
evening, Feb 7, 2009.
So far, from Kamailio (OpenSER) community you can meet there:
- Henning Westerholt - http://www.kamailio.org/mos/view/Management/
- Elena-Ramona Modroiu - http://www.kamailio.org/mos/view/Management/
- Daniel-Constantin Mierla - http://www.kamailio.org/mos/view/Management/
- Dan Bogos - http://itsyscom.com/
In order to know properly the size of the place we need, please drop me
an email if you intend to attend. People knowing Brussels are welcome to
suggest a nice place to meet (good beer and food are a must).
Looking forward to meeting you in Brussels.
Cheers,
Daniel
--
Daniel-Constantin Mierla
http://www.asipto.com
Dear All,
I wanted to seriously use OpenSER last September, but I dropped it after I read all the disputes. And for some reasons, I don't want to use SER or OpenSIPS. It looks to me that this SIP Router project is more promising especially for long run.
Now to the question. It looks to me there is no useable release of SIP Router up to now. Is that right? If so, when could we have the merged release of Kamailio and SER?
Kind regards,
Anto
Hello,
this should be valueable for sip-router.org as well.
I have introduced in siputils module of Kamailio functions to compare
SIP URI and AoR in a more RFC manner, related to:
https://sourceforge.net/tracker/index.php?func=detail&aid=2047019&group_id=…
Now, for URI it does comparison of:
- username
- password
- hostname
- port
For AoR, it does:
- username
- hostname
- port (if port is missing, it assumes 5060 -- for URI comparison this
is not used, conform to RFC3261)
The questions are:
- shall the comparison for URI be extended to follow full RFC? could get
complex when taking URI headers in account -- haven't seen many, but the
RFC allow them. Where to stop then the rules for comparing the URI?
- for AoR, I am not sure if port should be considered, but when running
multiple instances on different ports, it may make the difference? What
do you think?
Has SER now dedicated functions to match AoRs and URIs?
Cheers,
Daniel
Module: sip-router
Branch: master
Commit: d8d8f53af2f1cb048cf87506c6bbdbfc39c3f338
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=d8d8f53…
Author: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Committer: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Date: Fri Dec 19 14:30:14 2008 +0100
Merge commit 'origin/andrei/fixups'
* commit 'origin/andrei/fixups':
avp: comments fix
fixups: added kamailio compatible fixups
fixups: support for PVE & PVS in get_*_fparam()
fixups: fix param function using a param type mask
fixups: generic fixups work now on kamailio pvars
select: comments for parse_select()
avp: minor fixes & comments
sr_module: identing and whitespace
---
Module: sip-router
Branch: master
Commit: 3ab8aff76a4c81c004511e87bfd7ffb38b6d9555
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=3ab8aff…
Author: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Committer: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Date: Fri Dec 19 14:24:50 2008 +0100
Merge commit 'origin/ser_core_cvs'
* commit 'origin/ser_core_cvs':
dns: fix build warnings when compiling without ipv6
core: fix build on Darwin
doc: tcp tunning update
sctp: SO_REUSEADDR on the sctp sockets
tcp: fix for async write
another switch where PROTO_SCTP was missing - added case
sctp protocol decoded in RPC dst_blacklist.view
clean up whitespace in makefile
added README.prefix_route
Use explicit comparison with NULL, it's more clear and shuts off gcc,
Fix warnings on LP64 plarforms out there (all 64-bit amd64/emt64 unixes
added new module prefix_route
update RPM spec file
t_suspend() and t_continue() functions have been documented.
dns: naptr local preferences fix
more type punning warnings fixed
avp: warning fixes & more sane usr_avp struct
dns cache: fixed missing sctp SRV queries
dns: fixed missing sctp SRV queries
---