Module: sip-router
Branch: master
Commit: ecdcd5fabcfb5c6dada2ca3ee2acb1c92ba21c91
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=ecdcd5f…
Author: Juha Heinanen <jh(a)tutpro.com>
Committer: Juha Heinanen <jh(a)tutpro.com>
Date: Fri May 29 09:23:09 2009 +0300
* Fixed Makefiles of Radius related modules, which did not include
Makefile.radius.
---
modules/auth_radius/Makefile | 5 +++--
modules/misc_radius/Makefile | 9 ++-------
modules/peering/Makefile | 5 +++--
3 files changed, 8 insertions(+), 11 deletions(-)
diff --git a/modules/auth_radius/Makefile b/modules/auth_radius/Makefile
index b6f0758..4dde7ed 100644
--- a/modules/auth_radius/Makefile
+++ b/modules/auth_radius/Makefile
@@ -6,13 +6,14 @@
# WARNING: do not run this directly, it should be run by the master Makefile
include ../../Makefile.defs
+include ../../Makefile.radius
+
auto_gen=
NAME=auth_radius.so
-DEFS+=-I$(LOCALBASE)/include
-LIBS=-L$(LOCALBASE)/lib $(RADIUS_LIB)
DEFS+=-DOPENSER_MOD_INTERFACE
SERLIBPATH=../../lib
SER_LIBS+=$(SERLIBPATH)/kcore/kcore
+
include ../../Makefile.modules
diff --git a/modules/misc_radius/Makefile b/modules/misc_radius/Makefile
index dc10c03..8d10177 100644
--- a/modules/misc_radius/Makefile
+++ b/modules/misc_radius/Makefile
@@ -3,16 +3,11 @@
# WARNING: do not run this directly, it should be run by the master Makefile
include ../../Makefile.defs
+include ../../Makefile.radius
+
auto_gen=
NAME=misc_radius.so
-# Comment the next two line and uncomment the following two if you want
-# to enable Radius support
-DEFS+= -DWITH_RADIUS_SUPPORT -I$(LOCALBASE)/include
-LIBS=-L$(LOCALBASE)/lib $(RADIUS_LIB)
-
DEFS+=-DOPENSER_MOD_INTERFACE
-SERLIBPATH=../../lib
-SER_LIBS+=$(SERLIBPATH)/kcore/kcore
include ../../Makefile.modules
diff --git a/modules/peering/Makefile b/modules/peering/Makefile
index 7b8425a..a6291e3 100644
--- a/modules/peering/Makefile
+++ b/modules/peering/Makefile
@@ -5,13 +5,14 @@
# WARNING: do not run this directly, it should be run by the master Makefile
include ../../Makefile.defs
+include ../../Makefile.radius
+
auto_gen=
NAME=peering.so
-DEFS+= -DWITH_RADIUS_SUPPORT -I$(LOCALBASE)/include
-LIBS=-L$(LOCALBASE)/lib $(RADIUS_LIB)
DEFS+=-DOPENSER_MOD_INTERFACE
SERLIBPATH=../../lib
SER_LIBS+=$(SERLIBPATH)/kcore/kcore
+
include ../../Makefile.modules
Bugs item #2798154, was opened at 2009-05-29 01:30
Message generated for change (Comment added) made by miconda
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=743020&aid=2798154&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: None
Status: Open
Resolution: None
Priority: 4
Private: No
Submitted By: Iñaki Baz Castillo (ibc_sf)
Assigned to: Nobody/Anonymous (nobody)
Summary: [dialog] Crash when receiving empry "Record-Route"
Initial Comment:
Kamailio 1.5 rev 5834.
I use 'dialog" module and "uac" module (this one to change From username).
Kamailio receives an INVITE, changes From (so addes a long "vsf" parameter to Record-Route) and forwards it to a gateway.
The gateway replies 183 and 200 containing a "Record-Route" with no value (empty).
Then Kamailio shows this error and crashes:
ERROR:core:print_rr_body: failed to parse RR
ERROR:dialog:populate_leg_info: failed to print route records
ERROR:dialog:dlg_onreply: could not add further info to the dialog
CRITICAL:core:receive_fd: EOF on 12
INFO:core:handle_sigs: child process 4505 exited by a signal 11
INFO:core:handle_sigs: core was not generated
INFO:core:handle_sigs: terminating due to SIGCHLD
INFO:core:sig_usr: signal 15 received
I attach the output of the coredump and also the SIP trace showing it.
----------------------------------------------------------------------
>Comment By: Daniel-Constantin Mierla (miconda)
Date: 2009-05-29 09:20
Message:
Seems similar to what Alex Hermann reported in #2797928. I will check.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=743020&aid=2798154&group_…
Bugs item #2798154, was opened at 2009-05-29 00:30
Message generated for change (Tracker Item Submitted) made by ibc_sf
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=743020&aid=2798154&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: None
Status: Open
Resolution: None
Priority: 4
Private: No
Submitted By: Iñaki Baz Castillo (ibc_sf)
Assigned to: Nobody/Anonymous (nobody)
Summary: [dialog] Crash when receiving empry "Record-Route"
Initial Comment:
Kamailio 1.5 rev 5834.
I use 'dialog" module and "uac" module (this one to change From username).
Kamailio receives an INVITE, changes From (so addes a long "vsf" parameter to Record-Route) and forwards it to a gateway.
The gateway replies 183 and 200 containing a "Record-Route" with no value (empty).
Then Kamailio shows this error and crashes:
ERROR:core:print_rr_body: failed to parse RR
ERROR:dialog:populate_leg_info: failed to print route records
ERROR:dialog:dlg_onreply: could not add further info to the dialog
CRITICAL:core:receive_fd: EOF on 12
INFO:core:handle_sigs: child process 4505 exited by a signal 11
INFO:core:handle_sigs: core was not generated
INFO:core:handle_sigs: terminating due to SIGCHLD
INFO:core:sig_usr: signal 15 received
I attach the output of the coredump and also the SIP trace showing it.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=743020&aid=2798154&group_…
Makefile.defs has
MAIN_NAME=ser
how can i change MAIN_NAME to sip-router? could the above be changed to
MAIN_NAME=sip-router
or
MAIN_NAME ?= ser
-- juha
Revision: 5861
http://openser.svn.sourceforge.net/openser/?rev=5861&view=rev
Author: henningw
Date: 2009-05-28 16:50:14 +0000 (Thu, 28 May 2009)
Log Message:
-----------
- fix one bigger SHM memory leak and a few small PKG leaks in DB error paths
- patch from Timo Reimann, timo dot reimann at 1und1 dot de
Modified Paths:
--------------
branches/1.3/modules/carrierroute/carrier_tree.c
branches/1.3/modules/carrierroute/route_db.c
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Bugs item #2796454, was opened at 2009-05-25 11:35
Message generated for change (Comment added) made by egschubert
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=743020&aid=2796454&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: tools
Group: ver devel
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Edson - 4lists (egschubert)
Assigned to: Nobody/Anonymous (nobody)
Summary: Problems on 'kamctl' script on CR command
Initial Comment:
Just updated to the last SVN:
...
Kamailio-151:~/sip-server # kamailio -V
version: kamailio 1.5.1-notls (i386/linux)
flags: STATISTICS, USE_IPV6, USE_TCP, USE_SCTP, DISABLE_NAGLE, USE_MCAST, SHM_MMAP, PKG_MALLOC, F_MALLOC, FAST_LOCK-ADAPTIVE_WAIT
ADAPTIVE_WAIT_LOOPS=1024, MAX_RECV_BUFFER_SIZE 262144, MAX_LISTEN 16, MAX_URI_SIZE 1024, BUF_SIZE 65535, PKG_SIZE 4194304
poll method support: poll, epoll_lt, epoll_et, sigio_rt, select.
svnrevision: 2:5858M
@(#) $Id: main.c 5608 2009-02-13 16:48:17Z henningw $
main.c compiled on 11:09:12 May 25 2009 with gcc 4.3
And 'kamctl cr' says:
...
cr addcarrier <carrier> <scan_prefix> <domain> <rewrite_host> ................
<prob> <strip> <rewrite_prefix> <rewrite_suffix> ...............
<flags> <mask> <comment> .........................add a carrier
...
But command:
...
Kamailio-151:~/sip-server # kamctl cr addcarrier 1 0 2 X.X.X.X 1 1 123456 '' '' '' 'Output_Route_X123'
Output_Route_X123
ERROR 1064 (42000) at line 1: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ' Rota_de_saida_pelo_IPIPGW)' at line 1
ERROR: cr - SQL Error
Kamailio-151:~/sip-server #
On script 'kamctl', line 1357:
if [ $# -gt 8 ] ; then
COMMENT=$9
Edson.
----------------------------------------------------------------------
>Comment By: Edson - 4lists (egschubert)
Date: 2009-05-28 12:15
Message:
re-sending...
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=743020&aid=2796454&group_…
Hello,
as both SIP Express Router (SER) and Kamailio (OpenSER) projects have
now the sources in the same GIT repository hosted by
http://sip-router.org, next week the devel lists specific for each
project (serdev(a)lists.iptel.org and devel(a)lists.kamailio.org) will be
unified with sr-dev(a)lists.sip-router.org.
In this way, new commits to the code, discussions about present and
future development versions will be in one place. Current ML addresses
will be aliased to sr-dev(a)lists.sip-router.org, so they will still be
reachable. The archives to the date will stay independent, new
registration will be directed to sr-dev.
The whole process should be transparent to all existing subscribers,
however, if you experience downtime, please be patient a bit, but if the
issues last for long time, please report to me. The planned time for
migration is Monday/Tuesday next week. .
Cheers,
Daniel
--
Daniel-Constantin Mierla
http://www.asipto.com/