Re: [Freeswitch-users] mod_erlang_event compile problem

2009-02-24 Thread Leon de Rooij
Andrew, I think you're right, packets are indeed sent to 172.31.0.13 while mod_erlang_event is listening at 127.0.0.1 ! Why didn't I see that ! ;-) Will test it now and let you know how it goes.. regards, Leon On Feb 24, 2009, at 1:22 AM, Andrew Thompson wrote: Leon, I think I found the

Re: [Freeswitch-users] mod_erlang_event compile problem

2009-02-24 Thread Leon de Rooij
Well, this works, I feel a bit stupid now :-] Now it's time to play with it.. Thanks a lot ! kind regards, Leon On Feb 24, 2009, at 1:22 AM, Andrew Thompson wrote: Leon, I think I found the problem. I shouldn't have been defaulting to binding to 127.0.0.1, instead the default should

Re: [Freeswitch-users] mod_erlang_event compile problem

2009-02-24 Thread Andrew Thompson
On Tue, Feb 24, 2009 at 10:49:24AM +0100, Leon de Rooij wrote: Well, this works, I feel a bit stupid now :-] Now it's time to play with it.. Nah, bad choice of defaults on my part. Defaulting to 0.0.0.0 is much more consistant and compatible. For some reason I was trying to emulate the event

Re: [Freeswitch-users] mod_erlang_event compile problem

2009-02-23 Thread Leon de Rooij
Hi Andrew, Everything is running on an Ubuntu Hardy Xen domu with kernel 2.6.24-23-xen. Erlang is version R12B5 and was compiled from source with options -- enable-hipe, --enable-smp-support en --enable-threads. FS is trunk version 12197. I did copy the configuration file to

Re: [Freeswitch-users] mod_erlang_event compile problem

2009-02-23 Thread Andrew Thompson
On Mon, Feb 23, 2009 at 11:09:28AM +0100, Leon de Rooij wrote: Everything is running on an Ubuntu Hardy Xen domu with kernel 2.6.24-23-xen. Oh, this might explain some things.. Erlang is version R12B5 and was compiled from source with options -- enable-hipe, --enable-smp-support en

Re: [Freeswitch-users] mod_erlang_event compile problem

2009-02-23 Thread Andrew Thompson
Leon, I think I found the problem. I shouldn't have been defaulting to binding to 127.0.0.1, instead the default should be 0.0.0.0. I've patched the module to actually bind to 0.0.0.0 correctly and made it the default in the config file. Erlang nodes by default bind to 0.0.0.0, so I decided to

Re: [Freeswitch-users] mod_erlang_event compile problem

2009-02-22 Thread Andrew Thompson
On Sat, Feb 21, 2009 at 03:42:24PM +0100, Leon de Rooij wrote: Hi Andrew, Thanks for your help so far, I hope you can help me a bit further as I don't get any reply from the FS erlang node, or so it seems.. Here is what I've done: - The erlang_event.conf.xml is unchanged:

Re: [Freeswitch-users] mod_erlang_event compile problem

2009-02-22 Thread Andrew Thompson
Leon, I can't replicate your issue, at the very least I'd expect you to see the Ignorable error in ei_accept - probable bad client version, bad cookie or bad nodename warning. What OS/Erlang version are you using? Andrew ___ Freeswitch-users mailing

Re: [Freeswitch-users] mod_erlang_event compile problem

2009-02-21 Thread Leon de Rooij
Hi Andrew, Thanks for your help so far, I hope you can help me a bit further as I don't get any reply from the FS erlang node, or so it seems.. Here is what I've done: - The erlang_event.conf.xml is unchanged: configuration name=erlang_event.conf description=Erlang Socket Client

[Freeswitch-users] mod_erlang_event compile problem

2009-02-20 Thread Leon de Rooij
Hi, I wanted to try out the mod_erlang_event module. I have Erlang R12B5 compiled and it's in the same location as the Makefile specifies (/usr/ local/lib/erlang/...), but running make in the src/mod/event_handlers/ mod_erlang_event goes wrong: Compiling handle_msg.c... cc1: warnings being

Re: [Freeswitch-users] mod_erlang_event compile problem

2009-02-20 Thread Andrew Thompson
On Fri, Feb 20, 2009 at 05:19:25PM +0100, Leon de Rooij wrote: Hi, I wanted to try out the mod_erlang_event module. I have Erlang R12B5 compiled and it's in the same location as the Makefile specifies (/usr/ local/lib/erlang/...), but running make in the src/mod/event_handlers/

Re: [Freeswitch-users] mod_erlang_event compile problem

2009-02-20 Thread Leon de Rooij
Hi Andrew, Thanks! it compiles fine now.. Also thanks for the tip about empd, got it running without errors now :-) regards, Leon On Feb 20, 2009, at 8:08 PM, Andrew Thompson wrote: On Fri, Feb 20, 2009 at 05:19:25PM +0100, Leon de Rooij wrote: Hi, I wanted to try out the