is there any way to make deb packages for only 1 of the modules ?? currently it takes a long time to run "make deb"
im simply trying to build and package db_cassandra ( need the package for my environment )
As a side note, is there any chance db_cassandra could be added to the kamailio deb packages ?
Im also trying to track down a bug with the resulting debian package for cassandra.
the db_cassandra.so is not included in the package only changelog.gz changelog.Debian.gz and copyright
any pointers here would be great !
On 1 April 2015 at 21:50, jay binks jaybinks@gmail.com wrote:
is there any way to make deb packages for only 1 of the modules ?? currently it takes a long time to run "make deb"
im simply trying to build and package db_cassandra ( need the package for my environment )
As a side note, is there any chance db_cassandra could be added to the kamailio deb packages ?
-- Sincerely
Jay
Look at what is printed during packaging and see if the cassandra module appears like being installed.
Cheers, Daniel
On 01/04/15 13:59, jay binks wrote:
Im also trying to track down a bug with the resulting debian package for cassandra.
the db_cassandra.so is not included in the package only changelog.gz changelog.Debian.gz and copyright
any pointers here would be great !
On 1 April 2015 at 21:50, jay binks <jaybinks@gmail.com mailto:jaybinks@gmail.com> wrote:
is there any way to make deb packages for only 1 of the modules ?? currently it takes a long time to run "make deb" im simply trying to build and package db_cassandra ( need the package for my environment ) As a side note, is there any chance db_cassandra could be added to the kamailio deb packages ? -- Sincerely Jay
-- Sincerely
Jay
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
Hello,
you have to edit spec files and remove the other modules in the folder matching your debian distribution inside 'pkg/kamailio/deb/'. This is the only way I know to change the packaging content for debs. Then make a symlink inside root folder of kamailio server named 'debian' to the respective folder inside 'pkg/kamailio/deb/' and run 'make deb'.
Cheers, Daniel
On 01/04/15 13:50, jay binks wrote:
is there any way to make deb packages for only 1 of the modules ?? currently it takes a long time to run "make deb"
im simply trying to build and package db_cassandra ( need the package for my environment )
As a side note, is there any chance db_cassandra could be added to the kamailio deb packages ?
-- Sincerely
Jay
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
Sorry, this confused me a little.. can you give an example of what you mean ?
On 1 April 2015 at 22:40, Daniel-Constantin Mierla miconda@gmail.com wrote:
Hello,
you have to edit spec files and remove the other modules in the folder matching your debian distribution inside 'pkg/kamailio/deb/'. This is the only way I know to change the packaging content for debs. Then make a symlink inside root folder of kamailio server named 'debian' to the respective folder inside 'pkg/kamailio/deb/' and run 'make deb'.
Cheers, Daniel
On 01/04/15 13:50, jay binks wrote:
is there any way to make deb packages for only 1 of the modules ?? currently it takes a long time to run "make deb"
im simply trying to build and package db_cassandra ( need the package for my environment )
As a side note, is there any chance db_cassandra could be added to the kamailio deb packages ?
-- Sincerely
Jay
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing listsr-users@lists.sip-router.orghttp://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
-- Daniel-Constantin Mierlahttp://twitter.com/#!/miconda - http://www.linkedin.com/in/miconda Kamailio World Conference, May 27-29, 2015 Berlin, Germany - http://www.kamailioworld.com
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
The spec files to build debian packages are kept inside 'pkg/kamailio/deb/' directory, groupped per distribution name inside specific sub-directories (using debian and ubuntu version names -- the one 'debian' is the generic one, but for a specific version you should choose the one matching the name).
Then I am not that familiar with debian spec files to be able to advice by heart, however you should find easily on the web many sources of information about the files inside those folder and how to build deb packages.
Say you want to build for debian wheezy:
- edit the files inside pkg/kamailio/deb/wheezy/ to fit your needs - in the root directory with kamailio sources do:
ln -s pkg/kamailio/deb/wheezy debian make deb
And you should get the packaging process started.
Cheers, Daniel
On 01/04/15 14:46, jay binks wrote:
Sorry, this confused me a little.. can you give an example of what you mean ?
On 1 April 2015 at 22:40, Daniel-Constantin Mierla <miconda@gmail.com mailto:miconda@gmail.com> wrote:
Hello, you have to edit spec files and remove the other modules in the folder matching your debian distribution inside 'pkg/kamailio/deb/'. This is the only way I know to change the packaging content for debs. Then make a symlink inside root folder of kamailio server named 'debian' to the respective folder inside 'pkg/kamailio/deb/' and run 'make deb'. Cheers, Daniel On 01/04/15 13:50, jay binks wrote:
is there any way to make deb packages for only 1 of the modules ?? currently it takes a long time to run "make deb" im simply trying to build and package db_cassandra ( need the package for my environment ) As a side note, is there any chance db_cassandra could be added to the kamailio deb packages ? -- Sincerely Jay _______________________________________________ SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org <mailto:sr-users@lists.sip-router.org> http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
-- Daniel-Constantin Mierla http://twitter.com/#!/miconda <http://twitter.com/#%21/miconda> - http://www.linkedin.com/in/miconda Kamailio World Conference, May 27-29, 2015 Berlin, Germany - http://www.kamailioworld.com _______________________________________________ SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org <mailto:sr-users@lists.sip-router.org> http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
-- Sincerely
Jay
I have managed to confirm that "make deb" does not actually build db_cassandra but it does make a deb for it :) ( has changelog etc but no db_cassandra.so file )
why does it not build the .so when calling make deb ?? can someone point me in the direction to debug that part.
doesnt seem to be related to the debian rules or control file ..
is there something like modules.lst for when using "make deb" ?
On 2 April 2015 at 00:24, Daniel-Constantin Mierla miconda@gmail.com wrote:
The spec files to build debian packages are kept inside 'pkg/kamailio/deb/' directory, groupped per distribution name inside specific sub-directories (using debian and ubuntu version names -- the one 'debian' is the generic one, but for a specific version you should choose the one matching the name).
Then I am not that familiar with debian spec files to be able to advice by heart, however you should find easily on the web many sources of information about the files inside those folder and how to build deb packages.
Say you want to build for debian wheezy:
- edit the files inside pkg/kamailio/deb/wheezy/ to fit your needs
- in the root directory with kamailio sources do:
ln -s pkg/kamailio/deb/wheezy debian make deb
And you should get the packaging process started.
Cheers, Daniel
On 01/04/15 14:46, jay binks wrote:
Sorry, this confused me a little.. can you give an example of what you mean ?
On 1 April 2015 at 22:40, Daniel-Constantin Mierla miconda@gmail.com wrote:
Hello,
you have to edit spec files and remove the other modules in the folder matching your debian distribution inside 'pkg/kamailio/deb/'. This is the only way I know to change the packaging content for debs. Then make a symlink inside root folder of kamailio server named 'debian' to the respective folder inside 'pkg/kamailio/deb/' and run 'make deb'.
Cheers, Daniel
On 01/04/15 13:50, jay binks wrote:
is there any way to make deb packages for only 1 of the modules ?? currently it takes a long time to run "make deb"
im simply trying to build and package db_cassandra ( need the package for my environment )
As a side note, is there any chance db_cassandra could be added to the kamailio deb packages ?
-- Sincerely
Jay
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing listsr-users@lists.sip-router.orghttp://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
-- Daniel-Constantin Mierlahttp://twitter.com/#!/miconda - http://www.linkedin.com/in/miconda Kamailio World Conference, May 27-29, 2015 Berlin, Germany - http://www.kamailioworld.com
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
-- Sincerely
Jay
-- Daniel-Constantin Mierlahttp://twitter.com/#!/miconda - http://www.linkedin.com/in/miconda Kamailio World Conference, May 27-29, 2015 Berlin, Germany - http://www.kamailioworld.com
Do you see db_cassandra being compiled in the logs printed by 'make deb'?
Cheers, Daniel
On 02/04/15 03:37, jay binks wrote:
I have managed to confirm that "make deb" does not actually build db_cassandra but it does make a deb for it :) ( has changelog etc but no db_cassandra.so file )
why does it not build the .so when calling make deb ?? can someone point me in the direction to debug that part.
doesnt seem to be related to the debian rules or control file ..
is there something like modules.lst for when using "make deb" ?
On 2 April 2015 at 00:24, Daniel-Constantin Mierla <miconda@gmail.com mailto:miconda@gmail.com> wrote:
The spec files to build debian packages are kept inside 'pkg/kamailio/deb/' directory, groupped per distribution name inside specific sub-directories (using debian and ubuntu version names -- the one 'debian' is the generic one, but for a specific version you should choose the one matching the name). Then I am not that familiar with debian spec files to be able to advice by heart, however you should find easily on the web many sources of information about the files inside those folder and how to build deb packages. Say you want to build for debian wheezy: - edit the files inside pkg/kamailio/deb/wheezy/ to fit your needs - in the root directory with kamailio sources do: ln -s pkg/kamailio/deb/wheezy debian make deb And you should get the packaging process started. Cheers, Daniel On 01/04/15 14:46, jay binks wrote:
Sorry, this confused me a little.. can you give an example of what you mean ? On 1 April 2015 at 22:40, Daniel-Constantin Mierla <miconda@gmail.com <mailto:miconda@gmail.com>> wrote: Hello, you have to edit spec files and remove the other modules in the folder matching your debian distribution inside 'pkg/kamailio/deb/'. This is the only way I know to change the packaging content for debs. Then make a symlink inside root folder of kamailio server named 'debian' to the respective folder inside 'pkg/kamailio/deb/' and run 'make deb'. Cheers, Daniel On 01/04/15 13:50, jay binks wrote:
is there any way to make deb packages for only 1 of the modules ?? currently it takes a long time to run "make deb" im simply trying to build and package db_cassandra ( need the package for my environment ) As a side note, is there any chance db_cassandra could be added to the kamailio deb packages ? -- Sincerely Jay _______________________________________________ SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org <mailto:sr-users@lists.sip-router.org> http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
-- Daniel-Constantin Mierla http://twitter.com/#!/miconda <http://twitter.com/#%21/miconda> - http://www.linkedin.com/in/miconda Kamailio World Conference, May 27-29, 2015 Berlin, Germany - http://www.kamailioworld.com _______________________________________________ SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org <mailto:sr-users@lists.sip-router.org> http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users -- Sincerely Jay
-- Daniel-Constantin Mierla http://twitter.com/#!/miconda <http://twitter.com/#%21/miconda> - http://www.linkedin.com/in/miconda Kamailio World Conference, May 27-29, 2015 Berlin, Germany - http://www.kamailioworld.com
-- Sincerely
Jay
Hello,
We have setup Kamailio (SIP) at linux ubuntu server and it is working fine for call and text chat with users that are registered at server for some DNS networks.
Audio call is not working at some DNS and chat is working at same DNS.
We have already disabled firewall at server.
What can be problem at server.
I have also attached config file .. please check if there is any error.
Let us know any communication option so we can sort out this issue at our server.
Thanks
From: sr-users [mailto:sr-users-bounces@lists.sip-router.org] On Behalf Of jay binks Sent: Wednesday, April 01, 2015 6:16 PM To: Daniel-Constantin Mierla; Kamailio (SER) - Users Mailing List Subject: Re: [SR-Users] Make deb
Sorry, this confused me a little..
can you give an example of what you mean ?
On 1 April 2015 at 22:40, Daniel-Constantin Mierla miconda@gmail.com wrote:
Hello,
you have to edit spec files and remove the other modules in the folder matching your debian distribution inside 'pkg/kamailio/deb/'. This is the only way I know to change the packaging content for debs. Then make a symlink inside root folder of kamailio server named 'debian' to the respective folder inside 'pkg/kamailio/deb/' and run 'make deb'.
Cheers, Daniel
On 01/04/15 13:50, jay binks wrote:
is there any way to make deb packages for only 1 of the modules ??
currently it takes a long time to run "make deb"
im simply trying to build and package db_cassandra ( need the package for my environment )
As a side note, is there any chance db_cassandra could be added to the kamailio deb packages ?
Hello,
We have added domain and now call is connected but audio is not coming.
What can be issue with audio call?
Following is details:
Username : user2
Domain : mobileappplatform.com
Password : 123456
Let me know what can be issue?
thanks
From: Yogendra Gupta [mailto:yogendra@konstantinfosolutions.com] Sent: Wednesday, April 01, 2015 7:57 PM To: 'Kamailio (SER) - Users Mailing List'; 'Daniel-Constantin Mierla' Subject: Kamailio audio call not working at some DNS network
Hello,
We have setup Kamailio (SIP) at linux ubuntu server and it is working fine for call and text chat with users that are registered at server for some DNS networks.
Audio call is not working at some DNS and chat is working at same DNS.
We have already disabled firewall at server.
What can be problem at server.
I have also attached config file .. please check if there is any error.
Let us know any communication option so we can sort out this issue at our server.
Thanks
From: sr-users [mailto:sr-users-bounces@lists.sip-router.org] On Behalf Of jay binks Sent: Wednesday, April 01, 2015 6:16 PM To: Daniel-Constantin Mierla; Kamailio (SER) - Users Mailing List Subject: Re: [SR-Users] Make deb
Sorry, this confused me a little..
can you give an example of what you mean ?
On 1 April 2015 at 22:40, Daniel-Constantin Mierla miconda@gmail.com wrote:
Hello,
you have to edit spec files and remove the other modules in the folder matching your debian distribution inside 'pkg/kamailio/deb/'. This is the only way I know to change the packaging content for debs. Then make a symlink inside root folder of kamailio server named 'debian' to the respective folder inside 'pkg/kamailio/deb/' and run 'make deb'.
Cheers, Daniel
On 01/04/15 13:50, jay binks wrote:
is there any way to make deb packages for only 1 of the modules ??
currently it takes a long time to run "make deb"
im simply trying to build and package db_cassandra ( need the package for my environment )
As a side note, is there any chance db_cassandra could be added to the kamailio deb packages ?
Hello,
I have setup kamailio at AWS server and it is connecting at private IP not public ip.
I am getting following error:
ERROR: <core> [udp_server.c:392]: udp_init(): bind(7, 0x7f9eca5f11bc, 16) on 54.149.7.246: Cannot assign requested address
Let me know where I need to fixed it
Thanks
From: Yogendra Gupta [mailto:yogendra@konstantinfosolutions.com] Sent: Tuesday, April 07, 2015 10:45 AM To: 'Kamailio (SER) - Users Mailing List'; 'Daniel-Constantin Mierla' Subject: RE: Kamailio audio call not working at some DNS network
Hello,
We have added domain and now call is connected but audio is not coming.
What can be issue with audio call?
Following is details:
Username : user2
Domain : mobileappplatform.com
Password : 123456
Let me know what can be issue?
thanks
From: Yogendra Gupta [mailto:yogendra@konstantinfosolutions.com] Sent: Wednesday, April 01, 2015 7:57 PM To: 'Kamailio (SER) - Users Mailing List'; 'Daniel-Constantin Mierla' Subject: Kamailio audio call not working at some DNS network
Hello,
We have setup Kamailio (SIP) at linux ubuntu server and it is working fine for call and text chat with users that are registered at server for some DNS networks.
Audio call is not working at some DNS and chat is working at same DNS.
We have already disabled firewall at server.
What can be problem at server.
I have also attached config file .. please check if there is any error.
Let us know any communication option so we can sort out this issue at our server.
Thanks
From: sr-users [mailto:sr-users-bounces@lists.sip-router.org] On Behalf Of jay binks Sent: Wednesday, April 01, 2015 6:16 PM To: Daniel-Constantin Mierla; Kamailio (SER) - Users Mailing List Subject: Re: [SR-Users] Make deb
Sorry, this confused me a little..
can you give an example of what you mean ?
On 1 April 2015 at 22:40, Daniel-Constantin Mierla miconda@gmail.com wrote:
Hello,
you have to edit spec files and remove the other modules in the folder matching your debian distribution inside 'pkg/kamailio/deb/'. This is the only way I know to change the packaging content for debs. Then make a symlink inside root folder of kamailio server named 'debian' to the respective folder inside 'pkg/kamailio/deb/' and run 'make deb'.
Cheers, Daniel
On 01/04/15 13:50, jay binks wrote:
is there any way to make deb packages for only 1 of the modules ??
currently it takes a long time to run "make deb"
im simply trying to build and package db_cassandra ( need the package for my environment )
As a side note, is there any chance db_cassandra could be added to the kamailio deb packages ?
On 05/06/2015 10:44 AM, Yogendra Gupta wrote:
Hello,
I have setup kamailio at AWS server and it is connecting at private IP not public ip.
I am getting following error:
ERROR: <core> [udp_server.c:392]: udp_init(): bind(7, 0x7f9eca5f11bc, 16) on 54.149.7.246: Cannot assign requested address
Let me know where I need to fixed it
Thanks
In your LISTEN statement, you probably have an IP that is not on the system.
Try something like:
listen=udp:X.X.X.X:5060 advertise Y.Y.Y.Y:5060
where x is your private ip and y is your public ip.
Fred Posner The Palner Group, Inc. http://www.palner.com (web) +1-503-914-0999 (direct)
*From:*Yogendra Gupta [mailto:yogendra@konstantinfosolutions.com] *Sent:* Tuesday, April 07, 2015 10:45 AM *To:* 'Kamailio (SER) - Users Mailing List'; 'Daniel-Constantin Mierla' *Subject:* RE: Kamailio audio call not working at some DNS network
Hello,
We have added domain and now call is connected but audio is not coming.
What can be issue with audio call?
Following is details:
Username : user2
Domain : mobileappplatform.com
Password : 123456
Let me know what can be issue?
thanks
*From:*Yogendra Gupta [mailto:yogendra@konstantinfosolutions.com] *Sent:* Wednesday, April 01, 2015 7:57 PM *To:* 'Kamailio (SER) - Users Mailing List'; 'Daniel-Constantin Mierla' *Subject:* Kamailio audio call not working at some DNS network
Hello,
We have setup Kamailio (SIP) at linux ubuntu server and it is working fine for call and text chat with users that are registered at server for some DNS networks.
Audio call is not working at some DNS and chat is working at same DNS.
We have already disabled firewall at server.
What can be problem at server.
I have also attached config file .. please check if there is any error.
Let us know any communication option so we can sort out this issue at our server.
Thanks
*From:*sr-users [mailto:sr-users-bounces@lists.sip-router.org] *On Behalf Of *jay binks *Sent:* Wednesday, April 01, 2015 6:16 PM *To:* Daniel-Constantin Mierla; Kamailio (SER) - Users Mailing List *Subject:* Re: [SR-Users] Make deb
Sorry, this confused me a little..
can you give an example of what you mean ?
On 1 April 2015 at 22:40, Daniel-Constantin Mierla <miconda@gmail.com mailto:miconda@gmail.com> wrote:
Hello,
you have to edit spec files and remove the other modules in the folder matching your debian distribution inside 'pkg/kamailio/deb/'. This is the only way I know to change the packaging content for debs. Then make a symlink inside root folder of kamailio server named 'debian' to the respective folder inside 'pkg/kamailio/deb/' and run 'make deb'.
Cheers, Daniel
On 01/04/15 13:50, jay binks wrote:
is there any way to make deb packages for only 1 of the modules ?? currently it takes a long time to run "make deb" im simply trying to build and package db_cassandra ( need the package for my environment ) As a side note, is there any chance db_cassandra could be added to the kamailio deb packages ? -- Sincerely Jay _______________________________________________ SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org <mailto:sr-users@lists.sip-router.org> http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
--
Daniel-Constantin Mierla
http://twitter.com/#!/miconda - http://www.linkedin.com/in/miconda
Kamailio World Conference, May 27-29, 2015
Berlin, Germany - http://www.kamailioworld.com
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org mailto:sr-users@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
--
Sincerely
Jay
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
I sent an answer to this same question from you yesterday.
Fred Posner The Palner Group, Inc. http://www.palner.com (web) +1-503-914-0999 (direct)
On 05/06/2015 10:44 AM, Yogendra Gupta wrote:
Hello,
I have setup kamailio at AWS server and it is connecting at private IP not public ip.
I am getting following error:
ERROR: <core> [udp_server.c:392]: udp_init(): bind(7, 0x7f9eca5f11bc, 16) on 54.149.7.246: Cannot assign requested address
Let me know where I need to fixed it
Thanks
*From:*Yogendra Gupta [mailto:yogendra@konstantinfosolutions.com] *Sent:* Tuesday, April 07, 2015 10:45 AM *To:* 'Kamailio (SER) - Users Mailing List'; 'Daniel-Constantin Mierla' *Subject:* RE: Kamailio audio call not working at some DNS network
Hello,
We have added domain and now call is connected but audio is not coming.
What can be issue with audio call?
Following is details:
Username : user2
Domain : mobileappplatform.com
Password : 123456
Let me know what can be issue?
thanks
*From:*Yogendra Gupta [mailto:yogendra@konstantinfosolutions.com] *Sent:* Wednesday, April 01, 2015 7:57 PM *To:* 'Kamailio (SER) - Users Mailing List'; 'Daniel-Constantin Mierla' *Subject:* Kamailio audio call not working at some DNS network
Hello,
We have setup Kamailio (SIP) at linux ubuntu server and it is working fine for call and text chat with users that are registered at server for some DNS networks.
Audio call is not working at some DNS and chat is working at same DNS.
We have already disabled firewall at server.
What can be problem at server.
I have also attached config file .. please check if there is any error.
Let us know any communication option so we can sort out this issue at our server.
Thanks
*From:*sr-users [mailto:sr-users-bounces@lists.sip-router.org] *On Behalf Of *jay binks *Sent:* Wednesday, April 01, 2015 6:16 PM *To:* Daniel-Constantin Mierla; Kamailio (SER) - Users Mailing List *Subject:* Re: [SR-Users] Make deb
Sorry, this confused me a little..
can you give an example of what you mean ?
On 1 April 2015 at 22:40, Daniel-Constantin Mierla <miconda@gmail.com mailto:miconda@gmail.com> wrote:
Hello,
you have to edit spec files and remove the other modules in the folder matching your debian distribution inside 'pkg/kamailio/deb/'. This is the only way I know to change the packaging content for debs. Then make a symlink inside root folder of kamailio server named 'debian' to the respective folder inside 'pkg/kamailio/deb/' and run 'make deb'.
Cheers, Daniel
On 01/04/15 13:50, jay binks wrote:
is there any way to make deb packages for only 1 of the modules ?? currently it takes a long time to run "make deb" im simply trying to build and package db_cassandra ( need the package for my environment ) As a side note, is there any chance db_cassandra could be added to the kamailio deb packages ? -- Sincerely Jay _______________________________________________ SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org <mailto:sr-users@lists.sip-router.org> http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
--
Daniel-Constantin Mierla
http://twitter.com/#!/miconda - http://www.linkedin.com/in/miconda
Kamailio World Conference, May 27-29, 2015
Berlin, Germany - http://www.kamailioworld.com
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org mailto:sr-users@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
--
Sincerely
Jay
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users