HI
I tried to build Kamailio 3.2.2 rpm pkg on Centos 6.2
following instruction from:
http://kb.asipto.com/kamailio:install:3.1.x-rpms-centos5x
I got the following error ( at the end of the email)
also tried:
pkg-config --cflags glib-2.0
export C_INCLUDE_PATH="/usr/include/glib-2.0 /usr/lib64/glib-2.0/include"
export CPLUS_INCLUDE_PATH="/usr/include/glib-2.0
/usr/lib64/glib-2.0/include"
the try to build again, got the same error.
anything could be wrong?
thanks.
min
//////////////////////////////////////////////////////////
+ make every-module group_include=kpurple
CC (gcc) [M purple.so] clientaccount.o
In file included from /usr/include/glib-2.0/glib/galloca.h:34,
from /usr/include/glib-2.0/glib.h:32,
from /usr/include/libpurple/account.h:30,
from clientaccount.c:21:
/usr/include/glib-2.0/glib/gtypes.h:410:2: error: #error unknown ENDIAN
type
In file included from /usr/include/glib-2.0/glib.h:33,
from /usr/include/libpurple/account.h:30,
from clientaccount.c:21:
/usr/include/glib-2.0/glib/garray.h:50: error: expected
specifier-qualifier-list before 'guint8'
/usr/include/glib-2.0/glib/garray.h:152: error: expected '=', ',', ';',
'asm' or '__attribute__' before '*' token
/usr/include/glib-2.0/glib/garray.h:157: error: expected ';', ',' or ')'
before '*' token
/usr/include/glib-2.0/glib/garray.h:160: error: expected ';', ',' or ')'
before '*' token
In file included from /usr/include/glib-2.0/glib/gerror.h:30,
from /usr/include/glib-2.0/glib/gthread.h:34,
from /usr/include/glib-2.0/glib/gasyncqueue.h:34,
from /usr/include/glib-2.0/glib.h:34,
from /usr/include/libpurple/account.h:30,
from clientaccount.c:21:
/usr/include/glib-2.0/glib/gquark.h:38: error: expected '=', ',', ';',
'asm' or '__attribute__' before 'GQuark'
/usr/include/glib-2.0/glib/gquark.h:42: error: expected '=', ',', ';',
'asm' or '__attribute__' before 'g_quark_try_string'
/usr/include/glib-2.0/glib/gquark.h:43: error: expected '=', ',', ';',
'asm' or '__attribute__' before 'g_quark_from_static_string'
/usr/include/glib-2.0/glib/gquark.h:44: error: expected '=', ',', ';',
'asm' or '__attribute__' before 'g_quark_from_string'
/usr/include/glib-2.0/glib/gquark.h:45: error: expected ')' before 'quark'
In file included from /usr/include/glib-2.0/glib/gthread.h:34,
....
Hi,
I have
# Time in seconds after a TCP connection will be closed if it is not
available for writing in this interval
tcp_send_timeout=2
And I am using
save("location", "0x04"))
to save only one contact per user.
However, when I tried to relay message to a user, sometimes it is taking
over 45 seconds for t_relay to timeout
and return 477 error.
How can I reduce the t_relay timeout?
Thanks
Krish Kura
Hello,
I'm trying to upgrade my company's sip server to the latest Kamailio to 3.1.5.
My development environment contained Openssl 0.9.8K version and everything works fine here.
I have tried to install a fresh package for my release, the openssl version from the Ubuntu packages is Openssl 1.0.0e
And I get the following error.
My error looks like this:
sudo /etc/init.d/kamailio start
Not starting kamailio: invalid configuration file!
-e
0(26880) ERROR: <core> [sr_module.c:523]: ERROR: load_module: could not open module </home/p4dev/BLand_password-Evo-N800v_4700/sw/SipServer/main/kamailio/lib/kamailio/modules/tls.so>: /home/p4dev/BLand_password-Evo-N800v_4700/sw/SipServer/main/kamailio/lib/kamailio/modules/tls.so: undefined symbol: SSLv2_client_method
0(26880) : <core> [cfg.y:3416]: parse error in config file /home/p4dev/BLand_password-Evo-N800v_4700/sw/SipServer/main/kamailio/etc/kamailio/kamailio.cfg, line 259, column 12-19: failed to load module
0(26880) WARNING: <core> [sr_module.c:578]: /home/p4dev/BLand_password-Evo-N800v_4700/sw/SipServer/main/kamailio/lib/kamailio/modules_k/perl.so: exports dlflags interface is deprecated and it will not be supported in newer versions; consider using mod_register() instead
0(26880) ERROR: <core> [modparam.c:161]: set_mod_param_regex: No module matching <tls> found
0(26880) : <core> [cfg.y:3419]: parse error in config file /home/p4dev/BLand_password-Evo-N800v_4700/sw/SipServer/main/kamailio/etc/kamailio/kamailio.cfg, line 437, column 118: Can't set module parameter
ERROR: bad config file (2 errors)
I'm not sure if this is a compatibility issue or is there some library missing that I have to install.
I saw this patch online with reference to Crypt-SSLeay at https://rt.cpan.org/Public/Bug/Display.html?id=70565
*The linker complains about missing SSLv2_method. The following patch works for me:*
--- SSLeay.xs~ 2011-08-29 07:25:46.000000000 +0200
+++ SSLeay.xs 2011-08-29 07:29:04.000000000 +0200
@@ -125,13 +125,9 @@
if(ssl_version == 23) {
ctx = SSL_CTX_new(SSLv23_client_method());
}
- else if(ssl_version == 3) {
+ else {
ctx = SSL_CTX_new(SSLv3_client_method());
}
- else {
- /* v2 is the default */
- ctx = SSL_CTX_new(SSLv2_client_method());
- }
SSL_CTX_set_options(ctx,SSL_OP_ALL|0);
SSL_CTX_set_default_verify_paths(ctx);
SSL_CTX_set_verify(ctx, SSL_VERIFY_NONE, NULL);
Hi Guys,
I have a question regarding the correct processing for cancelled requests
1. (A)--------------------INVITE ------------------->(B)
2. (A)<------------------180 RIGING------------------(B)
3. (A)--------------------CANCEL-------------------->(B)
4. (A)<------------------OK--------------------------(B)
5. (A)<---------487 Request Terminated---------------(B)
6. (A)--------------------ACK----------------------->(B)
I have the following section to deal with cancel messages however I am finding that the 487 response still hits my failure_route block. The failure_route block is called for serial forking.
# CANCEL processing
if (is_method("CANCEL"))
{
if (t_check_trans())
xdbg("## BISNET ## - Cancel Processing\n");
t_relay();
exit;
}
I can obviously do something like a (!t_check_status("487")) within the failure block but is there a better way to deal with this response ?
Although this doesn't really cause me a problem at the moment I see the following error in the debug
/usr/sbin/kamailio[23786]: ERROR: tm [tm.c:1368]: ERROR: w_t_relay_to: t_relay_to failed
/usr/sbin/kamailio[23786]: ERROR: sl [sl_funcs.c:282]: ERROR: sl_reply_error used: transaction canceled (487/SL)
As always your help is appreciated.
Steve
________________________________
Information in this message, including any attachments, is confidential to the person to whom it is addressed and may be legally privileged. If you are not the intended recipient please notify the sender and delete the message from your system. Please note that Bistech Group plc, Bistech plc, Bisnet Limited and the sender do not accept any responsibility for viruses. It is your responsibility to check the e-mail and any attachments for viruses. Calls may be monitored and recorded.
Hi!
i use kamailio 3.2.2 on Centos 6 and got in my logfile massiv these entries:
ERROR: uac [uac.c:462]: src pv value is not string
What is the srv pv? Must it be set?
--
Mit freundlichen Grüßen
*Karsten Horsmann*
Hi,
I keep getting this error in the sip_trace module:
Mar 26 06:19:26 siptest /usr/sbin/kamailio[4279]: ERROR: siptrace
[siptrace.c:1705]: there is not a valid number port 5060?/??
Krish Kura
Hi,
If anyone here is familiar with SEMS....
I installed it today, and could not figure out how to load the IVR
application... there is no ivr.so file....
any ideas? there is so little info about it on the web...
BR,
Uri
hi,
is it possible configure accounting to log into 2 databases at the same time?
thanks,
hannes
modparam("acc", "db_url", "mysql://user:pw@localhost/ser")
modparam("acc", "db_url", "mysql://user:pw@10.10.10.10/ser")
modparam("acc", "db_flag", 1)
modparam("acc", "db_missed_flag", 3)
hello,
Is there any billing application or modules to use with kamailio , for
example if i want to check the credits of the user on every passing
minute , and when he's out of credits i stop the call .
Please reply ASAP .
Thank you