THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
A new Flyspray task has been opened. Details are below.
User who did this - Olle Johansson (oej)
Attached to Project - sip-router
Summary - proxy_authenticate - missing error codes
Task Type - Bug Report
Category - Module
Status - Unconfirmed
Assigned To -
Operating System - All
Severity - Low
Priority - Normal
Reported Version - Development
Due in Version - Undecided
Due Date - Undecided
Details - The documentation for proxy_authenticate/www_authenticate in modules_k/auth_db does not cover all possible error codes. It mentions -1, -2 and -3, while auth/api.h has -4 and -5 as well.
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=233
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
Module: sip-router
Branch: master
Commit: a84b5e86cba413a3e5c9adc229b3b4e8c86a37ba
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=a84b5e8…
Author: Peter Dunkley <peter.dunkley(a)crocodile-rcs.com>
Committer: Peter Dunkley <peter.dunkley(a)crocodile-rcs.com>
Date: Sun May 20 01:13:41 2012 +0100
pkg/kamailio: Added new build and script files for Kamailio 3.3.0 on CentOS 6
- Based on the Fedora files I created recently
- Directory structured so that multiple CentOS releases can be handled
- The old CentOS .spec file (pkg/kamailio/rpm/kamailio.spec.CenOS) has
been left untouched. This file is out-of-date and doesn't work
properly with kamailio 3.3.0 and CentOS 6 (it should be removed if
no-one is using it)
- kamailio-build.appl and kamailio.appl are BoxGrinder appliance
definitions for CentOS 6 build and installation test machines.
- This .spec file builds and pacakges all Kamailio 3.3.0 modules
(modules/modules_k) that can be built and installed on CentOS 6
without adding any additional repositories. This means modules that
require packages (or versions of packages) not available in the
standard CentOS 6 repo are not built.
- The following modules are not build:
- modules/app_mono: Requires mono which is not in the CentOS 6 repo
- modules/auth_identity: Conflicts with TLS unless statically linked (which
requires changes to Makefile and is impractical for generic RPM building)
- modules/db_cassandra: Requires Cassandra and Thrift which are not in the
CentOS 6 repo
- modules/geoip: Requires GeoIP which is not in the CentOS 6 repo
- modules/iptrtpproxy: Needs local copy of iptables source to build
(impractical for generic RPM building)
- modules/json: Requires json-c whish is not in the CentOS 6 repo
- modules/jsonrpc-c: Requires json-c whish is not in the CentOS 6 repo
- modules/ndb_redis: Requires hiredis which is not in the CentOS 6 repo
- modules/peering: Requires radiusclient-ng which is not in the CentOS 6
repo
- modules_k/acc_radius: Requires radiusclient-ng which is not in the CentOS
6 repo
- modules_k/auth_radius: Required radiusclient-ng which is not in the
CentOS 6 repo
- modules_k/carrierroute: Requires libconfuse which is not in the CentOS 6
repo
- modules_k/db_oracle: Requires Oracle which is not in the CentOS 6 repo
(and is closed-source)
- modules_k/memcached: Module compilation appears to require an older
version of libmemcached-devel than the one in the CentOS 6 repo
- modules_k/mi_xmlrpc: Requires libxmlrpc-c3 which is not in the CentOS 6
repo
- modules_k/misc_radius: Requires radiusclient-ng which is not in the
CentOS 6 repo
- modules_k/osp: Requires OSP Toolkit which is not in the CentOS 6 repo
---
pkg/kamailio/centos/6/kamailio-build.appl | 38 ++
pkg/kamailio/centos/6/kamailio.appl | 33 ++
pkg/kamailio/centos/6/kamailio.init | 83 +++
pkg/kamailio/centos/6/kamailio.spec | 787 +++++++++++++++++++++++++++++
pkg/kamailio/centos/6/kamailio.sysconfig | 15 +
5 files changed, 956 insertions(+), 0 deletions(-)
Diff: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commitdiff;h=a84…
Module: sip-router
Branch: master
Commit: b3fac61868ae2c48db3dcd654f36c5d9a6c12f3f
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=b3fac61…
Author: Peter Dunkley <peter.dunkley(a)crocodile-rcs.com>
Committer: Peter Dunkley <peter.dunkley(a)crocodile-rcs.com>
Date: Fri May 18 10:00:05 2012 +0100
pkg/kamailio/fedora/f16: Fixed a couple of small issues with kamailio.spec
- Put .fc16 into the release name (so you can tell which distribution
the RPMs are for)
- Added missing BuildRequires (gcc)
---
pkg/kamailio/fedora/f16/kamailio.spec | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/pkg/kamailio/fedora/f16/kamailio.spec b/pkg/kamailio/fedora/f16/kamailio.spec
index 754e918..82e5266 100644
--- a/pkg/kamailio/fedora/f16/kamailio.spec
+++ b/pkg/kamailio/fedora/f16/kamailio.spec
@@ -1,6 +1,6 @@
%define name kamailio
%define ver 3.3.0
-%define rel pre2
+%define rel pre2.fc16
%define _sharedir %{_prefix}/share
@@ -30,7 +30,7 @@ Conflicts: kamailio-regex < %ver, kamailio-dialplan < %ver
Conflicts: kamailio-lcr < %ver, kamailio-xmlops < %ver
Conflicts: kamailio-redis < %ver, kamailio-json < %ver
Conflicts: kamailio-mono < %ver
-BuildRequires: make flex bison
+BuildRequires: bison flex gcc make
%description
Kamailio (former OpenSER) is an Open Source SIP Server released under GPL, able
@@ -859,6 +859,10 @@ fi
%changelog
+* Fri May 18 2012 Peter Dunkley <peter(a)dunkley.me.uk>
+ - Added missing BuildRequires (gcc).
+ - Added .fc16 to rel. This makes it easy to tell which distribution the RPMs
+ are built for.
* Thu May 17 2012 Peter Dunkley <peter(a)dunkley.me.uk>
- Updated rel to pre2.
* Mon May 7 2012 Peter Dunkley <peter(a)dunkley.me.uk>