freeswitch/scripts/c/socket2me
Ken Rice 7a147e4762 Update a ton of copyright statements to make sure the dates are proper 2012-04-25 17:14:55 -05:00
..
Makefile more clean up 2009-06-27 00:40:56 +00:00
README more clean up 2009-06-27 00:40:56 +00:00
socket2me.c Update a ton of copyright statements to make sure the dates are proper 2012-04-25 17:14:55 -05:00

README

EXAMPLE OF EVENT SOCKET EXTERNAL APP: REQUIRES mod_event_socket

Set this or something similar in your dialplan

<extension name="fax">
  <condition field="destination_number" expression="^866">
    <action application="set" data="fax_file_name=/tmp/cool.tiff"/>
    <!--"send" or "recv"-->
    <action application="set" data="fax_mode=send"/>
    <action application="socket" data="127.0.0.1:8084 async"/>
  </condition>
</extension>


and in a separate process run 
#./socket2me 127.0.0.1 127.0.0.1 8084