Module: sip-router
Branch: master
Commit: bb0fac6ac04af672dceca9ae1f4ca43106fb56d1
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=bb0fac6…
Author: Henning Westerholt <henning.westerholt(a)1und1.de>
Committer: Henning Westerholt <henning.westerholt(a)1und1.de>
Date: Wed Aug 19 16:54:53 2009 +0200
auth(k): fix proxy/ www_challenge function, extends docs a bit (port r5874)
- proxy_challenge / www_challenge was not sending any reply, in case
the nonce could not be created (with nonce_reuse = 0, default since 1.4)
- added a note to the docs about return-values from the auth-module
- regenerate README file
---
modules_k/auth/README | 548 +++++++++++++++++++-----------------
modules_k/auth/challenge.c | 5 +-
modules_k/auth/doc/auth_admin.xml | 8 +
3 files changed, 301 insertions(+), 260 deletions(-)
Diff: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commitdiff;h=bb0…
Module: sip-router
Branch: master
Commit: 1a0c0dd44a6d45d6193d7adb487a2d7665474d2f
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=1a0c0dd…
Author: Henning Westerholt <henning.westerholt(a)1und1.de>
Committer: Henning Westerholt <henning.westerholt(a)1und1.de>
Date: Wed Aug 19 16:44:48 2009 +0200
cr: small fix in doxygen, fix obselete function description (port from r5897)
---
modules/carrierroute/cr_func.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/carrierroute/cr_func.c b/modules/carrierroute/cr_func.c
index 6e69ad2..74e3c8e 100644
--- a/modules/carrierroute/cr_func.c
+++ b/modules/carrierroute/cr_func.c
@@ -233,7 +233,7 @@ static int set_next_domain_recursor(struct dtrie_node_t *failure_node,
/**
* searches for a rule int rt with hash_index prob - 1
* If the rule with the desired hash index is deactivated,
- * the next working rule is used.
+ * the backup rule is used if available.
*
* @param rf the route_flags node to search for rule
* @param prob the hash index
Module: sip-router
Branch: master
Commit: 91d2ed7e550aee380a03333abff557cb427bf03d
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=91d2ed7…
Author: Henning Westerholt <henning.westerholt(a)1und1.de>
Committer: Henning Westerholt <henning.westerholt(a)1und1.de>
Date: Wed Aug 19 16:37:10 2009 +0200
auth_db(k): fix error in auth_db documentation for calc_ha1 (port from r5910)
---
modules_k/auth_db/README | 9 +++++----
modules_k/auth_db/doc/auth_db_admin.xml | 8 ++++----
2 files changed, 9 insertions(+), 8 deletions(-)
diff --git a/modules_k/auth_db/README b/modules_k/auth_db/README
index 65772c6..79f79f3 100644
--- a/modules_k/auth_db/README
+++ b/modules_k/auth_db/README
@@ -168,10 +168,11 @@ modparam("auth_db", "password_column_2", "ha1_2")
1.3.6. calculate_ha1 (integer)
- This parameter tells the server whether it should use plaintext
- passwords or a pre-calculated HA1 string for authentification.
+ This parameter tells the server whether it should use a
+ pre-calculated HA1 string or plaintext passwords for
+ authentification.
- If the parameter is set to 1 and the username parameter of
+ If the parameter is set to 0 and the username parameter of
credentials contains also "@domain" (some user agents append
the domain to the username parameter), then the server will use
the HA1 values from the column specified in the
@@ -179,7 +180,7 @@ modparam("auth_db", "password_column_2", "ha1_2")
doesn't contain a domain, the server will use the HA1 values
from the column given in the "password_column"parameter.
- If the parameter is set to 0 then the HA1 value will be
+ If the parameter is set to 1 then the HA1 value will be
calculated from the column specified in the "password_column"
parameter.
diff --git a/modules_k/auth_db/doc/auth_db_admin.xml b/modules_k/auth_db/doc/auth_db_admin.xml
index 2609bce..71180ca 100644
--- a/modules_k/auth_db/doc/auth_db_admin.xml
+++ b/modules_k/auth_db/doc/auth_db_admin.xml
@@ -164,11 +164,11 @@ modparam("auth_db", "password_column_2", "ha1_2")
<section>
<title><varname>calculate_ha1</varname> (integer)</title>
<para>
- This parameter tells the server whether it should use plaintext
- passwords or a pre-calculated HA1 string for authentification.
+ This parameter tells the server whether it should use a pre-calculated
+ HA1 string or plaintext passwords for authentification.
</para>
<para>
- If the parameter is set to 1 and the username parameter of credentials
+ If the parameter is set to 0 and the username parameter of credentials
contains also <quote>@domain</quote> (some user agents append the
domain to the username parameter), then the server will use the HA1
values from the column specified in the
@@ -177,7 +177,7 @@ modparam("auth_db", "password_column_2", "ha1_2")
column given in the <quote>password_column</quote>parameter.
</para>
<para>
- If the parameter is set to 0 then the HA1 value will be calculated
+ If the parameter is set to 1 then the HA1 value will be calculated
from the column specified in the <quote>password_column</quote>
parameter.
</para>
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.