Module: sip-router
Branch: master
Commit: 9a0b182593cd4709cc73c463a916de6a78aa7ccc
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=9a0b182…
Author: Henning Westerholt <henning.westerholt(a)1und1.de>
Committer: Henning Westerholt <henning.westerholt(a)1und1.de>
Date: Fri Sep 4 17:44:43 2009 +0200
userblacklist(k): add new function 'check_user_whitelist'
- add new function 'check_user whitelist'
- patch from Alexandr Dubovikov, Alexandr dot Dubovikov at qsc dot de
- works like the existing check_user_blacklist, but return -1 when not
the user is not found
---
modules_k/userblacklist/README | 353 ++++++++++++--------
.../userblacklist/doc/userblacklist_admin.xml | 35 ++-
modules_k/userblacklist/userblacklist.c | 29 ++-
3 files changed, 272 insertions(+), 145 deletions(-)
Diff: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commitdiff;h=9a0…
Revision: 5922
http://openser.svn.sourceforge.net/openser/?rev=5922&view=rev
Author: henningw
Date: 2009-09-04 15:58:17 +0000 (Fri, 04 Sep 2009)
Log Message:
-----------
- port from git 9566b04be79: fix error in check_user_blacklist DB code
Modified Paths:
--------------
branches/1.5/modules/userblacklist/db.c
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Bugs item #2851214, was opened at 2009-09-04 16:26
Message generated for change (Tracker Item Submitted) made by axlh
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=743020&aid=2851214&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: modules
Group: ver 1.5.x
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Alex Hermann (axlh)
Assigned to: Nobody/Anonymous (nobody)
Summary: Registrar leaks contacts from unrelated users
Initial Comment:
When an AOR with no active registrations queries for its current bindings (Contact: *, Expires: 0), the registrar returns the bindings of the AOR who was last handled by the same process instead of returning an empty list. Attached patch fixes this. Applies to 1.4 as well as 1.5.
Btw, why does every caller of get_urecord() check for negative return code??? The function can only return 0 or 1.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=743020&aid=2851214&group_…
Revision: 5921
http://openser.svn.sourceforge.net/openser/?rev=5921&view=rev
Author: henningw
Date: 2009-09-04 13:04:06 +0000 (Fri, 04 Sep 2009)
Log Message:
-----------
- small docs clarification related to ring_insert_callid function
Modified Paths:
--------------
branches/1.5/modules/siputils/README
branches/1.5/modules/siputils/doc/siputils_admin.xml
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
why does test
if ($var(test)) ...
fail even when $var(test) has a non-empty string value?
the test works, if i do it like this:
if ($var(test) != 0) ...
i'm pretty sure that in k also the first version of the test works.
-- juha
Module: sip-router
Branch: master
Commit: 3e493f4d363966db93bc32bca62c10ca6a14b927
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=3e493f4…
Author: Nils Ohlmeier <lando(a)bespin.rfc3261.net>
Committer: Nils Ohlmeier <lando(a)bespin.rfc3261.net>
Date: Thu Sep 3 16:22:48 2009 +0200
oob cfg: merged changes from last SIPit
This version of sip-router-oob.cfg was successfully tested at
SIPit 24. The changes are:
- re-organzied the NAT detection
- added lots of comments about NAT detection
- renamed the record- and loose-routes
- added an inactive ENUM route
- activated DNS NAPTR and SRV options
- disabled TCP async to allow usage of TLS
- disabled the files limit as this prevents the usage of the config as non-root
user on most systems
---
etc/sip-router-oob.cfg | 176 ++++++++++++++++++++++++++++++++++--------------
1 files changed, 126 insertions(+), 50 deletions(-)
Diff: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commitdiff;h=3e4…
Hello,
just committed to GIT support for 'include' in config file. Hopefully
this helps in nicer structuring and maintenance of your configs.
The syntax is simple:
include path_to_file
The path_to_file can be relative or absolute. If it is not absolute
path, first attempt is to locate it relative to current directory, and
if fails, relative to directory of the file that includes it. There is
no restriction where include can be used or what can contain - any part
of config file is ok. There is a limit of maximum 10 includes in depth,
otherwise you can use as many includes as you want. Reporting of the cfg
file syntax errors prints now the file name for easier troubleshooting.
Example:
route {
...
include /sr/checks.cfg
...
}
--- /sr/checks.cfg ---
if (!mf_process_maxfwd_header("10")) {
sl_send_reply("483","Too Many Hops");
exit;
}
---
Testing and feedback is much appreciated.
Cheers,
Daniel
--
Daniel-Constantin Mierla
* http://www.asipto.com/