Re: [Freeswitch-dev] stop/start RTP

2010-03-16 Thread Vitalii Colosov
can't this be used? uuid_media off http://wiki.freeswitch.org/wiki/Bypass_Media#How_to_disable.2Fenable_it_on_the_fly.3F 2010/3/16 Tihomir Culjaga > is there any way to stop/start RTP traffic on an active call? > > > e.g. some API call or event that can be triggered through event socket ? >

Re: [Freeswitch-dev] esljni.dll

2010-03-16 Thread Gledhill, James
What I am looking for is someone that has compiled the FreeSwitch Event Socket Library for Windows (fs_src/libs/esl/java -- and created the windows dll required to use with Java). To make JNI stuff work you need the java classes (independent of OS) and the JNI library (OS dependant). I can make an

Re: [Freeswitch-dev] stop/start RTP

2010-03-16 Thread Tihomir Culjaga
On Tue, Mar 16, 2010 at 6:15 PM, Anthony Minessale < anthony.miness...@gmail.com> wrote: > uuid_hold might > > > > Where do you store the information about established calls? Is it a core database or cache? lets suppose we have 2 FS servers sitting on top of a DB cluster. The left server has a fl

Re: [Freeswitch-dev] esljni.dll

2010-03-16 Thread Brian West
I suspect its in the JDK/JNI dev kit you get from sun/oracle. Also DO NOT HIJACK threads. If you compose an email to this list please click NEW then input the address and send it. What you did was take an existing message and click reply, change the subject and delete the body. Please don't

[Freeswitch-dev] esljni.dll

2010-03-16 Thread Gledhill, James
Does anyone have a esljni.dll already built they can send me. I do not have the background to build it on Windows, but want to run it from Windows. I have it working on Linux, but need the dll for Windows. Thanks ___ FreeSWITCH-dev mailing list Fre

Re: [Freeswitch-dev] hooked functions are not called while using one single session

2010-03-16 Thread Anthony Minessale
you probably want to use the application interface and a while loop while reading a frame. see most of the functions in switch_ivr_play_say On Tue, Mar 16, 2010 at 8:51 AM, Francisco Scaramanga wrote: > The module I am writing should be an endpoint VOIP-interface for another > program. The mod

Re: [Freeswitch-dev] stop/start RTP

2010-03-16 Thread Anthony Minessale
uuid_hold might On Tue, Mar 16, 2010 at 12:04 PM, Tihomir Culjaga wrote: > is there any way to stop/start RTP traffic on an active call? > > > e.g. some API call or event that can be triggered through event socket ? > > > > T. > > ___ > FreeSWITCH-dev

[Freeswitch-dev] stop/start RTP

2010-03-16 Thread Tihomir Culjaga
is there any way to stop/start RTP traffic on an active call? e.g. some API call or event that can be triggered through event socket ? T. ___ FreeSWITCH-dev mailing list FreeSWITCH-dev@lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo

[Freeswitch-dev] C library and threads within openwrt

2010-03-16 Thread Cavalera Claudio Luigi
Hello, I'm still working with freeswitch inside openwrt build system. What C library do you advise among these possibilities: 1) uclibc with linuxthreads-old 2) uclibc with NPTL 3) glibc (I guess this implements NPTL) I'm asking this because I know freeswitch heavy relies on threads and I've expe

Re: [Freeswitch-dev] hooked functions are not called while using one single session

2010-03-16 Thread Francisco Scaramanga
The module I am writing should be an endpoint VOIP-interface for another program. The module should answer a call and transport incoming audio into a 3rd party application. Furthermore the 3rd party application sends audio data back to the caller. This is why I hooked channel_read_frame and ch

Re: [Freeswitch-dev] hooked functions are not called while using one single session

2010-03-16 Thread Anthony Minessale
What exactly is your goal? those hooks will probably only be called if you send the channel to do something that requires reading and writing audio. On Tue, Mar 16, 2010 at 6:47 AM, Francisco Scaramanga wrote: > Hello, > I am writing my own freeswitch module and have implemented 2 hooks for >

[Freeswitch-dev] hooked functions are not called while using one single session

2010-03-16 Thread Francisco Scaramanga
Hello, I am writing my own freeswitch module and have implemented 2 hooks for reading and writing audio (I did not implement the endpoint interface). My problem is that the channel_write_frame and channel_read_frame callback-functions are only called if I make an intercept with another session