├── debian ├── docs ├── compat ├── freeswitch-doc.docs ├── source │ └── format ├── freeswitch-doc.install ├── freeswitch.dirs ├── libfreeswitch1.install ├── freeswitch-mod-pocketsphinx.install.tmpl ├── freeswitch-mod-java.install.tmpl ├── freeswitch-mod-python.install.tmpl ├── freeswitch-mod-managed.install.tmpl ├── freeswitch-mod-python3.install.tmpl ├── freeswitch-systemd.freeswitch.tmpfile ├── freeswitch-sysvinit.freeswitch.default ├── python-esl.install ├── freeswitch-timezones.install ├── libfreeswitch-dev.install ├── apt_sources.list ├── freeswitch-mod-perl.install.tmpl ├── freeswitch.install ├── freeswitch.prerm └── gbp.conf ├── libs ├── srtp │ ├── COPYING │ ├── INSTALL │ ├── NEWS │ ├── ChangeLog │ ├── .update │ ├── AUTHORS │ ├── CODEOWNERS │ ├── configure.gnu │ ├── build │ │ └── config │ │ │ ├── ac_prog_gzip.m4 │ │ │ └── ac_prog_wget.m4 │ ├── update.sh │ ├── include │ │ └── srtp2 │ │ │ └── meson.build │ └── libsrtp2.pc.in ├── win32 │ ├── cleancount │ ├── apr │ │ └── cleancount │ ├── libav │ │ └── cleancount │ ├── sofia │ │ └── cleancount │ ├── speex │ │ └── cleancount │ ├── iksemel │ │ └── cleancount │ ├── libpng │ │ └── cleancount │ ├── libvpx │ │ ├── cleancount │ │ └── vpx_version.h │ ├── pthread │ │ └── cleancount │ ├── sqlite │ │ └── cleancount │ ├── libresample │ │ └── cleancount │ └── libshout │ │ └── compat.h ├── esl │ ├── java │ │ └── classes │ │ │ └── .empty │ ├── fs_cli.rc │ ├── managed │ │ ├── ManagedEslTest │ │ │ └── .gitignore │ │ └── .gitignore │ ├── eslmake.rules.in │ ├── switch_version.rc2 │ ├── php │ │ └── test.php │ ├── perl │ │ ├── single_command.pl │ │ └── dump_events.pl │ ├── lua │ │ └── single_command.lua │ ├── .gitignore │ └── ruby │ │ ├── single_command.rb │ │ └── cflags.rb ├── libteletone │ ├── ChangeLog │ ├── .update │ ├── NEWS │ ├── README │ ├── configure.gnu │ ├── build │ │ └── config │ │ │ ├── ac_prog_gzip.m4 │ │ │ └── ac_prog_wget.m4 │ ├── acsite.m4 │ ├── CMakeLists.txt │ └── teletone.def ├── libnatpmp │ ├── wingettimeofday.c │ ├── natpmp.def │ └── declspec.h ├── xmlrpc-c │ ├── Makefile.depend │ ├── lib │ │ ├── Makefile.depend │ │ ├── abyss │ │ │ ├── .cvsignore │ │ │ ├── src │ │ │ │ ├── .cvsignore │ │ │ │ ├── Makefile.depend │ │ │ │ ├── socket_win.h │ │ │ │ ├── trace.h │ │ │ │ ├── socket_unix.h │ │ │ │ └── token.h │ │ │ ├── Makefile.depend │ │ │ ├── htdocs │ │ │ │ └── pwrabyss.gif │ │ │ └── example │ │ │ │ └── htdocs │ │ │ │ ├── index.htm │ │ │ │ └── pwrabyss.gif │ │ ├── util │ │ │ ├── Makefile.depend │ │ │ └── include │ │ │ │ ├── girmath.h │ │ │ │ └── unistdx.h │ │ ├── curl_transport │ │ │ ├── Makefile.depend │ │ │ └── lock_pthread.h │ │ ├── expat │ │ │ ├── gennmtab │ │ │ │ └── Makefile.depend │ │ │ ├── xmltok │ │ │ │ └── Makefile.depend │ │ │ └── xmlwf │ │ │ │ ├── codepage.h │ │ │ │ └── xmlfile.h │ │ └── libwww_transport │ │ │ └── Makefile.depend │ ├── src │ │ ├── Makefile.depend │ │ ├── cpp │ │ │ ├── Makefile.depend │ │ │ ├── test │ │ │ │ ├── server_abyss.hpp │ │ │ │ ├── server_pstream.hpp │ │ │ │ ├── xml.hpp │ │ │ │ ├── base64.hpp │ │ │ │ ├── value.hpp │ │ │ │ ├── registry.hpp │ │ │ │ └── testclient.hpp │ │ │ └── env_wrap.cpp │ │ ├── test │ │ │ ├── abyss.h │ │ │ ├── value.h │ │ │ ├── cgi.h │ │ │ ├── client.h │ │ │ ├── parse_xml.h │ │ │ ├── serialize.h │ │ │ ├── server_abyss.h │ │ │ ├── value_datetime.h │ │ │ ├── serialize_value.h │ │ │ ├── method_registry.h │ │ │ ├── client_dummy.c │ │ │ ├── data │ │ │ │ ├── sample_add_call.xml │ │ │ │ ├── req_out_of_order.xml │ │ │ │ └── req_no_params.xml │ │ │ ├── http-req-simple.txt │ │ │ └── req_no_params.xml │ │ ├── double.h │ │ └── parse_datetime.h │ ├── stamp-h.in │ ├── tools │ │ ├── xmlrpc │ │ │ └── Makefile.depend │ │ ├── xml-rpc-api2cpp │ │ │ └── Makefile.depend │ │ ├── xmlrpc_transport │ │ │ └── Makefile.depend │ │ ├── binmode-rpc-kit │ │ │ ├── examples │ │ │ │ ├── good-3.binmode │ │ │ │ ├── invalid-3.binmode │ │ │ │ ├── invalid-1.binmode │ │ │ │ ├── good-2.binmode │ │ │ │ ├── invalid-2.binmode │ │ │ │ ├── good-5.binmode │ │ │ │ ├── good-6.binmode │ │ │ │ ├── good-4.binmode │ │ │ │ ├── good-1.binmode │ │ │ │ ├── invalid-4.binmode │ │ │ │ ├── invalid-5.binmode │ │ │ │ ├── good-3.xml │ │ │ │ ├── good-6.xml │ │ │ │ └── good-2.xml │ │ │ ├── Makefile │ │ │ └── oct2bin │ │ ├── turbocharger │ │ │ ├── Makefile │ │ │ ├── mod_gzip.c │ │ │ └── mod_gzip.c.diff │ │ └── lib │ │ │ └── include │ │ │ └── dumpvalue.h │ ├── srcdir.mk.in │ ├── include │ │ └── xmlrpc-c │ │ │ ├── oldxmlrpc.h │ │ │ ├── base64_int.h │ │ │ └── sleep_int.h │ ├── Windows │ │ ├── UsingCURLinWin32.txt │ │ └── diffcfg.bat │ ├── conf │ │ └── abyss_root │ │ │ └── htdocs │ │ │ └── pwrabyss.gif │ ├── version.h │ └── configure.gnu ├── iksemel │ ├── include │ │ ├── stamp-h.in │ │ └── Makefile.am │ ├── .update │ ├── acsite.m4 │ ├── doc │ │ └── Makefile.am │ ├── configure.gnu │ ├── iksemel.pc.in │ └── tools │ │ └── perf.h ├── apr │ ├── .update │ ├── file_io │ │ ├── os2 │ │ │ ├── copy.c │ │ │ ├── fullrw.c │ │ │ ├── mktemp.c │ │ │ ├── tempdir.c │ │ │ └── filepath_util.c │ │ └── netware │ │ │ └── filepath.c │ ├── test │ │ ├── data │ │ │ ├── file_datafile.txt │ │ │ └── mmap_datafile.txt │ │ ├── aprtest.def │ │ ├── testapp.c │ │ └── nw_misc.c │ ├── network_io │ │ ├── os2 │ │ │ ├── sockaddr.c │ │ │ ├── inet_ntop.c │ │ │ └── inet_pton.c │ │ └── beos │ │ │ └── socketcommon.c │ ├── threadproc │ │ └── os2 │ │ │ └── signals.c │ ├── CHANGES │ ├── images │ │ ├── bug.gif │ │ ├── bug.png │ │ ├── tip.gif │ │ ├── tip.png │ │ ├── ball1.gif │ │ ├── ball1.png │ │ ├── ball2.gif │ │ ├── ball2.png │ │ ├── master.gif │ │ ├── master.png │ │ ├── caution.gif │ │ ├── caution.png │ │ ├── warning.gif │ │ ├── warning.png │ │ ├── ScanDocBig.jpg │ │ └── ScanDocSmall.jpg │ ├── libaprnw.mcp.zip │ ├── misc │ │ └── netware │ │ │ ├── aprlib.def │ │ │ └── apr.xdc │ ├── configure.gnu │ ├── build │ │ └── pkg │ │ │ └── pkginfo.in │ └── apr.pc.in ├── libvpx │ ├── .update │ ├── third_party │ │ ├── googletest │ │ │ └── gtest.mk │ │ └── libwebm │ │ │ └── AUTHORS.TXT │ ├── vp8 │ │ ├── exports_dec │ │ └── exports_enc │ ├── vp9 │ │ ├── exports_dec │ │ └── exports_enc │ ├── vpx_mem │ │ └── vpx_mem.mk │ ├── codereview.settings │ └── vpx │ │ ├── exports_dec │ │ └── exports_enc ├── libyuv │ ├── tools_libyuv │ │ ├── OWNERS │ │ ├── valgrind │ │ │ └── memcheck │ │ │ │ ├── OWNERS │ │ │ │ ├── suppressions_mac.txt │ │ │ │ └── suppressions_win32.txt │ │ ├── msan │ │ │ └── OWNERS │ │ ├── ubsan │ │ │ └── OWNERS │ │ └── autoroller │ │ │ └── unittests │ │ │ └── .DS_Store │ ├── unit_test │ │ └── testdata │ │ │ ├── tegra3.txt │ │ │ ├── test0.jpg │ │ │ ├── test1.jpg │ │ │ ├── test2.jpg │ │ │ ├── test3.jpg │ │ │ └── test4.jpg │ ├── AUTHORS │ ├── OWNERS │ ├── README.chromium │ ├── codereview.settings │ └── util │ │ └── Makefile ├── libscgi │ ├── FSSCGI.i │ └── perl │ │ └── testserver.pl ├── libsndfile │ └── doc │ │ └── libsndfile.jpg └── miniupnpc │ ├── mingw32make.bat │ └── declspec.h ├── web ├── etc │ └── .empty └── planet │ └── .empty ├── scripts ├── perl │ ├── FreeSWITCH │ │ ├── ChangeLog │ │ ├── README │ │ ├── debian │ │ │ ├── compat │ │ │ └── changelog │ │ └── Makefile.PL │ ├── timezones │ │ └── data │ │ │ └── .gitignore │ ├── POE-Filter-FSSocket │ │ ├── INSTALL │ │ ├── TODO │ │ ├── t │ │ │ └── 01_basic.t │ │ └── README │ └── originate.pl ├── py_modules │ └── __init__.py ├── ci │ └── test_build.sh ├── applescript │ └── FreeSWITCH Dialer.scpt ├── lua │ ├── helloworld.lua │ ├── originate.lua │ └── directory.gram ├── c │ └── socket2me │ │ └── Makefile ├── yes_no.gram ├── check-gitignore.sh ├── basic │ └── hello.bas ├── debug_sofia.sh └── javascript │ └── aadir │ └── README ├── src ├── Makefile.am ├── mod │ ├── languages │ │ ├── mod_java │ │ │ ├── mod_java.cpp │ │ │ ├── .gitattributes │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── freeswitch │ │ │ │ ├── FreeswitchScript.java │ │ │ │ ├── DTMFCallback.java │ │ │ │ └── HangupHook.java │ │ ├── mod_lua │ │ │ └── .gitattributes │ │ ├── mod_managed │ │ │ ├── .gitignore │ │ │ ├── monolibx86.cmd │ │ │ └── .gitattributes │ │ ├── mod_perl │ │ │ ├── compiler.opts │ │ │ ├── compiler.opts.in │ │ │ ├── perlibs.h.in │ │ │ ├── .gitattributes │ │ │ ├── perlibs.h │ │ │ └── mod_perl_extra.h │ │ ├── mod_python │ │ │ ├── .gitattributes │ │ │ └── README.md │ │ ├── mod_python3 │ │ │ ├── .gitattributes │ │ │ └── README.md │ │ └── mod_basic │ │ │ └── Makefile.am │ ├── endpoints │ │ ├── mod_rtmp │ │ │ └── libamf │ │ │ │ ├── src │ │ │ │ ├── amf3.h │ │ │ │ └── amf_list.h │ │ │ │ └── tests │ │ │ │ ├── amf0 │ │ │ │ └── CMakeLists.txt │ │ ├── mod_h323 │ │ │ ├── bugs │ │ │ └── compiling.txt │ │ ├── mod_gsmopen │ │ │ ├── libctb-0.16 │ │ │ │ ├── lib │ │ │ │ │ └── EMPTY │ │ │ │ ├── manual │ │ │ │ │ └── refman.pdf │ │ │ │ ├── python │ │ │ │ │ └── src │ │ │ │ │ │ ├── kbhit.i │ │ │ │ │ │ ├── linux │ │ │ │ │ │ └── wxctb.i │ │ │ │ │ │ └── win32 │ │ │ │ │ │ └── wxctb.i │ │ │ │ └── include │ │ │ │ │ └── ctb-0.16 │ │ │ │ │ └── kbhit.h │ │ │ ├── gsmlib │ │ │ │ ├── gsmlib-1.10-patched-13ubuntu │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── acinclude.m4 │ │ │ │ │ ├── po │ │ │ │ │ │ ├── cat-id-tbl.c │ │ │ │ │ │ ├── stamp-cat-id │ │ │ │ │ │ ├── de.gmo │ │ │ │ │ │ └── de.po │ │ │ │ │ ├── debian │ │ │ │ │ │ ├── compat │ │ │ │ │ │ ├── dirs │ │ │ │ │ │ ├── gsm-utils.docs │ │ │ │ │ │ ├── libgsmme-dev.docs │ │ │ │ │ │ ├── gsm-utils.examples │ │ │ │ │ │ ├── watch │ │ │ │ │ │ ├── gsm-utils.cron.d │ │ │ │ │ │ └── gsm-utils.dirs │ │ │ │ │ ├── stamp-h.in │ │ │ │ │ ├── intl │ │ │ │ │ │ ├── VERSION │ │ │ │ │ │ └── ChangeLog │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── spbi1.pb │ │ │ │ │ │ ├── spbi2-orig.pb │ │ │ │ │ │ ├── spb.pb │ │ │ │ │ │ ├── spb2.pb │ │ │ │ │ │ ├── testsms-output.txt │ │ │ │ │ │ ├── testspb-output.txt │ │ │ │ │ │ ├── testspb2-output.txt │ │ │ │ │ │ ├── testssms-output.txt │ │ │ │ │ │ └── runparser.sh │ │ │ │ │ ├── gsmlib-1.10.debmg │ │ │ │ │ │ └── debian │ │ │ │ │ │ │ ├── gsm-utils.undocumented │ │ │ │ │ │ │ ├── gsm-utils.prerm │ │ │ │ │ │ │ └── gsm-utils.dirs │ │ │ │ │ ├── scripts │ │ │ │ │ │ └── debugconfig.sh │ │ │ │ │ ├── TODO │ │ │ │ │ ├── win32 │ │ │ │ │ │ ├── gsmpb.dsp │ │ │ │ │ │ ├── gsmctl.dsp │ │ │ │ │ │ ├── gsmlib.dsp │ │ │ │ │ │ ├── gsmlib.dsw │ │ │ │ │ │ ├── gsmsmsd.dsp │ │ │ │ │ │ ├── testsms.dsp │ │ │ │ │ │ ├── gsmsendsms.dsp │ │ │ │ │ │ ├── testgsmlib.dsp │ │ │ │ │ │ ├── testsms2.dsp │ │ │ │ │ │ ├── gsmsmsstore.dsp │ │ │ │ │ │ └── COPYING │ │ │ │ │ ├── gsmlib │ │ │ │ │ │ ├── gsm_util.h │ │ │ │ │ │ └── gsm_util.cc │ │ │ │ │ ├── contrib │ │ │ │ │ │ └── gsm-utils.cron.d │ │ │ │ │ └── NEWS │ │ │ │ └── README │ │ │ ├── .gitignore │ │ │ ├── asterisk │ │ │ │ ├── asound.conf │ │ │ │ └── ciapalo │ │ │ ├── win_iconv │ │ │ │ ├── readme.txt │ │ │ │ ├── iconv.h │ │ │ │ └── mlang.def │ │ │ ├── alsa_nogsmlib_nocplusplus │ │ │ │ └── mod_gsmopen │ │ │ │ │ └── configs │ │ │ │ │ └── asound.conf │ │ │ ├── README │ │ │ └── FREEBSD_README.txt │ │ ├── mod_verto │ │ │ └── mcast │ │ │ │ └── .gitignore │ │ ├── mod_sofia │ │ │ ├── test │ │ │ │ ├── test_run_sipp.sh │ │ │ │ ├── voicemail │ │ │ │ │ ├── vm-person.wav │ │ │ │ │ ├── vm-goodbye.wav │ │ │ │ │ ├── vm-too-small.wav │ │ │ │ │ ├── vm-not_available.wav │ │ │ │ │ └── vm-record_message.wav │ │ │ │ ├── stir-shaken │ │ │ │ │ ├── pub.pem │ │ │ │ │ └── priv.pem │ │ │ │ └── test_sofia_funcs.sh │ │ │ └── .gitignore │ │ ├── mod_khomp │ │ │ ├── include │ │ │ │ └── revision.h │ │ │ └── docs │ │ │ │ ├── Manual.pdf │ │ │ │ ├── README.pdf │ │ │ │ ├── Manual.html │ │ │ │ ├── README.html │ │ │ │ ├── README_en.pdf │ │ │ │ ├── User_Guide.html │ │ │ │ └── User_Guide.pdf │ │ ├── mod_skypopen │ │ │ ├── configs │ │ │ │ ├── skype-client-configuration-dir-template │ │ │ │ │ ├── skypeclient00 │ │ │ │ │ │ ├── shared.lck │ │ │ │ │ │ ├── skypenameA │ │ │ │ │ │ │ ├── main.lock │ │ │ │ │ │ │ ├── config.lck │ │ │ │ │ │ │ ├── httpfe │ │ │ │ │ │ │ │ └── cookies.dat │ │ │ │ │ │ │ └── index2.dat │ │ │ │ │ │ └── skypenameB │ │ │ │ │ │ │ ├── main.lock │ │ │ │ │ │ │ ├── config.lck │ │ │ │ │ │ │ ├── httpfe │ │ │ │ │ │ │ └── cookies.dat │ │ │ │ │ │ │ └── index2.dat │ │ │ │ │ └── skypeclient01 │ │ │ │ │ │ ├── shared.lck │ │ │ │ │ │ ├── skypenameA │ │ │ │ │ │ ├── main.lock │ │ │ │ │ │ ├── config.lck │ │ │ │ │ │ ├── httpfe │ │ │ │ │ │ │ └── cookies.dat │ │ │ │ │ │ └── index2.dat │ │ │ │ │ │ ├── skypenameB │ │ │ │ │ │ ├── main.lock │ │ │ │ │ │ ├── config.lck │ │ │ │ │ │ ├── httpfe │ │ │ │ │ │ │ └── cookies.dat │ │ │ │ │ │ └── index2.dat │ │ │ │ │ │ └── skypenameC │ │ │ │ │ │ ├── main.lock │ │ │ │ │ │ ├── config.lck │ │ │ │ │ │ ├── httpfe │ │ │ │ │ │ └── cookies.dat │ │ │ │ │ │ └── index2.dat │ │ │ │ ├── old-stuff │ │ │ │ │ └── multiple-instance-same-skype-username │ │ │ │ │ │ └── README │ │ │ │ ├── wait.bat │ │ │ │ └── windows-service │ │ │ │ │ └── wait.cmd │ │ │ ├── old-stuff │ │ │ │ └── asterisk │ │ │ │ │ └── README │ │ │ └── README │ │ ├── mod_skinny │ │ │ └── conf │ │ │ │ ├── autoload_configs │ │ │ │ └── skinny.conf.xml │ │ │ │ └── dialplan │ │ │ │ └── skinny-patterns │ │ │ │ ├── 20-Demo.xml │ │ │ │ ├── 90-External.xml │ │ │ │ └── 99-Default_Drop.xml │ │ ├── mod_srs │ │ │ └── README.md │ │ ├── mod_rtc │ │ │ └── Makefile.am │ │ └── mod_unicall │ │ │ └── Makefile.am │ ├── applications │ │ ├── mod_vmd │ │ │ ├── .gitignore │ │ │ └── Makefile.am │ │ ├── mod_snapshot │ │ │ └── .gitignore │ │ ├── mod_distributor │ │ │ ├── .gitignore │ │ │ └── conf │ │ │ │ └── dialplan │ │ │ │ └── distributor.xml │ │ ├── .gitignore │ │ ├── mod_av │ │ │ ├── .gitignore │ │ │ └── test │ │ │ │ └── cluecon.png │ │ ├── mod_commands │ │ │ └── test │ │ │ │ └── .gitignore │ │ ├── mod_fsv │ │ │ ├── freeswitch-4k.yuv │ │ │ ├── freeswitch-720p.yuv │ │ │ ├── freeswitch-cif.yuv │ │ │ ├── freeswitch-1080p.yuv │ │ │ └── Makefile.am │ │ ├── mod_test │ │ │ └── test │ │ │ │ └── sounds │ │ │ │ ├── hi.wav │ │ │ │ ├── agent.wav │ │ │ │ ├── test.wav │ │ │ │ ├── test_agent.wav │ │ │ │ └── ivr-please_state_your_name_and_reason_for_calling.wav │ │ ├── mod_conference │ │ │ ├── test │ │ │ │ ├── conf │ │ │ │ │ └── font │ │ │ │ │ │ └── AEH.ttf │ │ │ │ └── images │ │ │ │ │ └── signalwire.png │ │ │ ├── .gitignore │ │ │ └── TODO │ │ ├── mod_prefix │ │ │ └── conf │ │ │ │ └── prefix.conf.xml │ │ ├── mod_curl │ │ │ └── conf │ │ │ │ └── autoload_configs │ │ │ │ └── curl.conf.xml │ │ ├── mod_rss │ │ │ ├── conf │ │ │ │ ├── dialplan │ │ │ │ │ └── rss.xml │ │ │ │ └── autoload_configs │ │ │ │ │ └── rss.conf.xml │ │ │ └── Makefile.am │ │ ├── mod_db │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── db.conf.xml │ │ │ └── Makefile.am │ │ ├── mod_limit │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── limit.conf.xml │ │ │ └── Makefile.am │ │ ├── mod_cv │ │ │ └── Makefile.hint │ │ ├── mod_ladspa │ │ │ ├── docs │ │ │ │ └── README │ │ │ └── Makefile.am │ │ ├── mod_http_cache │ │ │ └── conf │ │ │ │ └── dialplan │ │ │ │ └── http_cache.xml │ │ ├── mod_osp │ │ │ └── Makefile.am │ │ ├── mod_redis │ │ │ └── conf │ │ │ │ └── autoload_configs │ │ │ │ └── redis.conf.xml │ │ ├── mod_enum │ │ │ └── conf │ │ │ │ └── dialplan │ │ │ │ └── 99999_enum.xml │ │ ├── mod_hash │ │ │ └── conf │ │ │ │ └── autoload_configs │ │ │ │ └── hash.conf.xml │ │ ├── mod_memcache │ │ │ └── conf │ │ │ │ └── autoload_configs │ │ │ │ └── memcache.conf.xml │ │ ├── mod_esf │ │ │ └── Makefile.am │ │ ├── mod_lcr │ │ │ ├── Makefile.am │ │ │ └── conf │ │ │ │ └── dialplan │ │ │ │ └── lcr.xml │ │ ├── mod_sms │ │ │ └── Makefile.am │ │ ├── mod_spy │ │ │ └── Makefile.am │ │ ├── mod_bert │ │ │ └── Makefile.am │ │ ├── mod_fifo │ │ │ └── Makefile.am │ │ ├── mod_skel │ │ │ └── Makefile.am │ │ ├── mod_abstraction │ │ │ └── conf │ │ │ │ └── autoload_configs │ │ │ │ └── abstraction.conf.xml │ │ ├── mod_oreka │ │ │ └── Makefile.am │ │ ├── mod_sonar │ │ │ └── Makefile.am │ │ ├── mod_mp4v2 │ │ │ └── Makefile.am │ │ ├── mod_random │ │ │ └── Makefile.am │ │ ├── mod_fsk │ │ │ └── Makefile.am │ │ ├── mod_mp4 │ │ │ └── Makefile.am │ │ └── mod_dptools │ │ │ └── Makefile.am │ ├── asr_tts │ │ ├── mod_pocketsphinx │ │ │ └── .gitignore │ │ ├── mod_tts_commandline │ │ │ └── .gitignore │ │ └── mod_cepstral │ │ │ └── WinReadme.txt │ ├── event_handlers │ │ ├── mod_event_test │ │ │ └── .gitignore │ │ ├── mod_fail2ban │ │ │ └── fail2ban.conf.xml │ │ └── mod_smpp │ │ │ └── TODO │ ├── xml_int │ │ └── mod_xml_radius │ │ │ └── .gitignore │ ├── formats │ │ ├── mod_shout │ │ │ └── MPGLIB_TODO │ │ ├── mod_vlc │ │ │ └── README │ │ ├── mod_sndfile │ │ │ └── test │ │ │ │ └── sounds │ │ │ │ ├── hi.wav │ │ │ │ └── hello_stereo.wav │ │ ├── mod_opusfile │ │ │ └── test │ │ │ │ └── sounds │ │ │ │ ├── hi.opus │ │ │ │ ├── opusfile-test-ogg.bitstream │ │ │ │ ├── audiocheck.net_sin_1000Hz_-3dBFS_6s.opus │ │ │ │ └── audiocheck.net_sin_1000Hz_-3dBFS_6s.wav │ │ └── mod_png │ │ │ └── Makefile.am │ ├── sdk │ │ └── autotools │ │ │ ├── autogen.sh │ │ │ └── Makefile.am │ ├── codecs │ │ ├── mod_yuv │ │ │ └── Makefile │ │ ├── mod_openh264 │ │ │ └── test │ │ │ │ └── data │ │ │ │ ├── case1.packet1.264 │ │ │ │ ├── case1.packet2.264 │ │ │ │ ├── case1.packet3.264 │ │ │ │ ├── case1.packet4.264 │ │ │ │ ├── case1.packet5.264 │ │ │ │ ├── case2.packet1.264 │ │ │ │ ├── case2.packet2.264 │ │ │ │ ├── case2.packet3.264 │ │ │ │ └── case2.packet4.264 │ │ ├── mod_b64 │ │ │ └── Makefile.am │ │ ├── mod_h26x │ │ │ └── Makefile.am │ │ ├── mod_mp4v │ │ │ └── Makefile.am │ │ └── mod_theora │ │ │ └── Makefile.am │ ├── timers │ │ ├── mod_posix_timer │ │ │ └── test │ │ │ │ ├── README │ │ │ │ └── Makefile │ │ └── mod_timerfd │ │ │ └── Makefile.am │ ├── databases │ │ └── mod_mariadb │ │ │ └── mod_mariadb.c │ ├── loggers │ │ ├── mod_raven │ │ │ └── Makefile.am │ │ ├── mod_syslog │ │ │ └── Makefile.am │ │ ├── mod_console │ │ │ └── Makefile.am │ │ └── mod_logfile │ │ │ └── Makefile.am │ └── say │ │ ├── mod_say_de │ │ └── Makefile.am │ │ ├── mod_say_en │ │ └── Makefile.am │ │ ├── mod_say_es │ │ └── Makefile.am │ │ ├── mod_say_fa │ │ └── Makefile.am │ │ ├── mod_say_fr │ │ └── Makefile.am │ │ ├── mod_say_he │ │ └── Makefile.am │ │ ├── mod_say_hr │ │ └── Makefile.am │ │ ├── mod_say_hu │ │ └── Makefile.am │ │ ├── mod_say_it │ │ └── Makefile.am │ │ ├── mod_say_ja │ │ └── Makefile.am │ │ ├── mod_say_nl │ │ └── Makefile.am │ │ ├── mod_say_pl │ │ └── Makefile.am │ │ ├── mod_say_pt │ │ └── Makefile.am │ │ ├── mod_say_ru │ │ └── Makefile.am │ │ ├── mod_say_sv │ │ └── Makefile.am │ │ ├── mod_say_th │ │ └── Makefile.am │ │ └── mod_say_zh │ │ └── Makefile.am ├── switch_swig.i └── .gitignore ├── docs ├── man │ └── .gitignore ├── COPYING └── OPENH264_BINARY_LICENSE.txt ├── w32 ├── Setup │ ├── Sounds │ │ └── .gitignore │ ├── CustomActions │ │ └── Setup.CA.DownloadOpenH264 │ │ │ ├── .gitignore │ │ │ └── LICENSE.txt │ └── inno_setup │ │ ├── freepbx.ico │ │ ├── freeswitch.ico │ │ ├── vcredist_x64.exe │ │ ├── vcredist_x86.exe │ │ ├── freeswitch_1.0.4.iss │ │ ├── freeswitch_freepbx.iss │ │ ├── freeswitch_fusionpbx.iss │ │ ├── create_freepbx.sql │ │ ├── create_fusionpbx.sql │ │ ├── FreePBX.url │ │ ├── FusionPBX.url │ │ ├── create_freepbx.bat │ │ ├── create_fusionpbx.bat │ │ └── expsound.bat ├── Console │ ├── FreeSwitchConsole.rc │ └── switch_version.rc2 └── Library │ ├── FreeSwitchCoreLib.rc │ └── switch_version.rc2 ├── htdocs ├── slim.swf └── portal │ └── assets │ ├── bootstrap │ └── img │ │ ├── glyphicons-halflings.png │ │ └── glyphicons-halflings-white.png │ └── bootstrap-3.1.1 │ └── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── conf ├── FreeMono.ttf ├── freeswitch.xml ├── insideout │ ├── lang │ │ ├── de │ │ │ ├── vm │ │ │ │ └── tts.xml │ │ │ ├── demo │ │ │ │ └── demo.xml │ │ │ └── de.xml │ │ └── fr │ │ │ ├── vm │ │ │ └── sounds.xml │ │ │ └── fr.xml │ ├── autoload_configs │ │ ├── post_load_modules.conf.xml │ │ ├── limit.conf.xml │ │ ├── zeroconf.conf.xml │ │ ├── fifo.conf.xml │ │ ├── event_multicast.conf.xml │ │ ├── rss.conf.xml │ │ └── shout.conf.xml │ ├── openzap.conf │ └── dialplan │ │ └── default │ │ └── 99999_enum.xml ├── vanilla │ ├── yaml │ │ ├── extensions.yaml │ │ └── mod_yaml.yaml │ ├── autoload_configs │ │ ├── post_load_modules.conf.xml │ │ ├── curl.conf.xml │ │ ├── ivr.conf.xml │ │ ├── db.conf.xml │ │ ├── skinny.conf.xml │ │ ├── presence_map.conf.xml │ │ ├── zeroconf.conf.xml │ │ ├── pre_load_modules.conf.xml │ │ ├── redis.conf.xml │ │ ├── hash.conf.xml │ │ ├── memcache.conf.xml │ │ ├── abstraction.conf.xml │ │ ├── sndfile.conf.xml │ │ ├── rss.conf.xml │ │ └── shout.conf.xml │ └── dialplan │ │ ├── skinny-patterns │ │ ├── 20-Demo.xml │ │ ├── 90-External.xml │ │ └── 99-Default_Drop.xml │ │ └── default │ │ ├── pulver.com.noload │ │ ├── ideasip.com.noload │ │ ├── sipbroker.com.noload │ │ └── sipphone.com.noload ├── minimal │ ├── autoload_configs │ │ ├── db.conf.xml │ │ ├── conference.conf.xml │ │ └── event_socket.conf.xml │ ├── dialplan │ │ ├── public.xml │ │ ├── public │ │ │ └── 00_stub.xml │ │ └── default.xml │ ├── sip_profiles │ │ └── external │ │ │ └── stub.xml │ └── vars.xml ├── testing │ ├── dialplan │ │ ├── default.xml │ │ ├── public.xml │ │ └── default │ │ │ ├── 0007_pre_answer.xml │ │ │ ├── 0012_play_audio_local_stream.xml │ │ │ ├── 0006_set_video_on_hold.xml │ │ │ └── 0001_vmain.xml │ ├── autoload_configs │ │ ├── post_load_modules.conf.xml │ │ ├── presence_map.conf.xml │ │ ├── pre_load_modules.conf.xml │ │ ├── acl.conf.xml │ │ ├── hash.conf.xml │ │ ├── sndfile.conf.xml │ │ └── shout.conf.xml │ ├── directory │ │ └── default │ │ │ └── default.xml │ └── chatplan │ │ └── default.xml ├── sbc │ ├── autoload_configs │ │ ├── post_load_modules.conf.xml │ │ ├── limit.conf.xml │ │ └── event_socket.conf.xml │ └── dialplan │ │ └── default │ │ └── 99999_enum.xml ├── curl │ └── autoload_configs │ │ ├── post_load_modules.conf.xml │ │ ├── limit.conf.xml │ │ ├── modules.conf.xml │ │ ├── zeroconf.conf.xml │ │ ├── fifo.conf.xml │ │ ├── event_multicast.conf.xml │ │ ├── rss.conf.xml │ │ ├── shout.conf.xml │ │ └── event_socket.conf.xml └── rayo │ └── autoload_configs │ ├── post_load_modules.conf.xml │ ├── presence_map.conf.xml │ └── pre_load_modules.conf.xml ├── fonts ├── FreeMono.ttf ├── FreeSans.ttf ├── FreeSerif.ttf ├── FreeMonoBold.ttf ├── FreeSansBold.ttf ├── FreeSerifBold.ttf ├── README.fonts ├── FreeMonoOblique.ttf ├── FreeSansOblique.ttf ├── FreeSerifItalic.ttf ├── FreeMonoBoldOblique.ttf ├── FreeSansBoldOblique.ttf └── FreeSerifBoldItalic.ttf ├── images ├── cluecon.jpg ├── cluecon.png ├── default-mute.png └── default-avatar.png ├── tests └── unit │ ├── run-tests.mk │ ├── conf │ └── FreeMono.ttf │ ├── images │ ├── banner.png │ └── signalwire.png │ ├── pcap │ ├── milliwatt.pcmu.rtp.pcap │ └── milliwatt.long.pcmu.rtp.pcap │ └── README ├── fscomm ├── resources │ ├── test.wav │ ├── splash.png │ ├── pref_audio.gif │ ├── pref_sip.png │ ├── pref_general.jpg │ ├── taskbar_icon.png │ └── pref_accounts.jpg ├── channel.cpp ├── MakeVcProj.cmd └── .gitignore ├── clients └── flex │ ├── build.sh │ ├── freeswitch.swf │ ├── warning-icon.png │ ├── freeswitch-h264.swf │ └── Sound_of_phone_ringing2.mp3 ├── support-d ├── .screenrc ├── rbfs ├── utils │ └── bt.sh └── aliases.sql ├── devel-bootstrap.sh ├── swig_common.i ├── .mailmap ├── docker ├── examples │ └── README.md └── base_image │ └── sounds_version.txt ├── .gitconfig └── cc.sh /debian/docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/srtp/COPYING: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/srtp/INSTALL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/srtp/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/etc/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/planet/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /libs/srtp/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/win32/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/esl/java/classes/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libteletone/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/win32/apr/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/libav/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/sofia/cleancount: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /libs/win32/speex/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/libnatpmp/wingettimeofday.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/win32/iksemel/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/libpng/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/libvpx/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/pthread/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/sqlite/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/xmlrpc-c/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/perl/FreeSWITCH/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/perl/FreeSWITCH/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = mod 2 | -------------------------------------------------------------------------------- /debian/freeswitch-doc.docs: -------------------------------------------------------------------------------- 1 | #DOCS# 2 | -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /docs/man/.gitignore: -------------------------------------------------------------------------------- 1 | *.1 2 | *.html 3 | -------------------------------------------------------------------------------- /libs/win32/libresample/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/abyss/.cvsignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/abyss/src/.cvsignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/util/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/cpp/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /debian/freeswitch-doc.install: -------------------------------------------------------------------------------- 1 | #DOCS# 2 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/abyss/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/abyss/src/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/xmlrpc/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/perl/FreeSWITCH/debian/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /scripts/py_modules/__init__.py: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /src/mod/languages/mod_java/mod_java.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod/languages/mod_lua/.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/freeswitch.dirs: -------------------------------------------------------------------------------- 1 | usr/share/freeswitch/fonts -------------------------------------------------------------------------------- /libs/iksemel/include/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /libs/win32/libshout/compat.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/curl_transport/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/expat/gennmtab/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/expat/xmltok/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_rtmp/libamf/src/amf3.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/apr/.update: -------------------------------------------------------------------------------- 1 | Wed Sep 25 15:25:12 EDT 2019 2 | -------------------------------------------------------------------------------- /libs/esl/fs_cli.rc: -------------------------------------------------------------------------------- 1 | #include "switch_version.rc2" 2 | -------------------------------------------------------------------------------- /libs/iksemel/.update: -------------------------------------------------------------------------------- 1 | Mon Jul 15 16:57:11 CDT 2013 2 | -------------------------------------------------------------------------------- /libs/libvpx/.update: -------------------------------------------------------------------------------- 1 | Thu Mar 19 03:08:11 UTC 2020 2 | -------------------------------------------------------------------------------- /libs/srtp/.update: -------------------------------------------------------------------------------- 1 | Fri Apr 26 00:00:02 CDT 2019 2 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/libwww_transport/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/srcdir.mk.in: -------------------------------------------------------------------------------- 1 | SRCDIR=@abs_srcdir@ 2 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/xml-rpc-api2cpp/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/xmlrpc_transport/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod/applications/mod_vmd/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /src/mod/asr_tts/mod_pocketsphinx/.gitignore: -------------------------------------------------------------------------------- 1 | /Win32/ -------------------------------------------------------------------------------- /src/mod/endpoints/mod_h323/bugs: -------------------------------------------------------------------------------- 1 | seems none for now -------------------------------------------------------------------------------- /src/mod/languages/mod_managed/.gitignore: -------------------------------------------------------------------------------- 1 | /managed/obj/ -------------------------------------------------------------------------------- /libs/apr/file_io/os2/copy.c: -------------------------------------------------------------------------------- 1 | #include "../unix/copy.c" 2 | -------------------------------------------------------------------------------- /libs/esl/managed/ManagedEslTest/.gitignore: -------------------------------------------------------------------------------- 1 | app.config 2 | -------------------------------------------------------------------------------- /libs/libteletone/.update: -------------------------------------------------------------------------------- 1 | Fri Mar 16 17:18:25 EDT 2007 2 | -------------------------------------------------------------------------------- /libs/libyuv/tools_libyuv/OWNERS: -------------------------------------------------------------------------------- 1 | phoglund@chromium.org 2 | -------------------------------------------------------------------------------- /libs/libyuv/tools_libyuv/valgrind/memcheck/OWNERS: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /src/mod/applications/mod_snapshot/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /src/mod/languages/mod_perl/compiler.opts: -------------------------------------------------------------------------------- 1 | /IC:\perl\lib\CORE -------------------------------------------------------------------------------- /debian/libfreeswitch1.install: -------------------------------------------------------------------------------- 1 | /usr/lib/libfreeswitch.so.* 2 | -------------------------------------------------------------------------------- /libs/apr/file_io/os2/fullrw.c: -------------------------------------------------------------------------------- 1 | #include "../unix/fullrw.c" 2 | -------------------------------------------------------------------------------- /libs/apr/file_io/os2/mktemp.c: -------------------------------------------------------------------------------- 1 | #include "../unix/mktemp.c" 2 | -------------------------------------------------------------------------------- /libs/apr/file_io/os2/tempdir.c: -------------------------------------------------------------------------------- 1 | #include "../unix/tempdir.c" 2 | -------------------------------------------------------------------------------- /libs/apr/test/data/file_datafile.txt: -------------------------------------------------------------------------------- 1 | This is the file data file. -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/test/abyss.h: -------------------------------------------------------------------------------- 1 | void 2 | test_abyss(void); 3 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/test/value.h: -------------------------------------------------------------------------------- 1 | void 2 | test_value(void); 3 | -------------------------------------------------------------------------------- /src/mod/applications/mod_distributor/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /src/mod/asr_tts/mod_tts_commandline/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/libctb-0.16/lib/EMPTY: -------------------------------------------------------------------------------- 1 | ciao 2 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_verto/mcast/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.so 3 | -------------------------------------------------------------------------------- /src/mod/event_handlers/mod_event_test/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /src/mod/languages/mod_perl/compiler.opts.in: -------------------------------------------------------------------------------- 1 | /I@PERL_INCLUDE@ -------------------------------------------------------------------------------- /src/mod/xml_int/mod_xml_radius/.gitignore: -------------------------------------------------------------------------------- 1 | freeradius-client* -------------------------------------------------------------------------------- /w32/Setup/Sounds/.gitignore: -------------------------------------------------------------------------------- 1 | Fragments 2 | bin 3 | obj 4 | -------------------------------------------------------------------------------- /libs/apr/network_io/os2/sockaddr.c: -------------------------------------------------------------------------------- 1 | #include "../unix/sockaddr.c" 2 | -------------------------------------------------------------------------------- /libs/apr/test/data/mmap_datafile.txt: -------------------------------------------------------------------------------- 1 | This is the MMAP data file. 2 | -------------------------------------------------------------------------------- /libs/apr/threadproc/os2/signals.c: -------------------------------------------------------------------------------- 1 | #include "../unix/signals.c" 2 | -------------------------------------------------------------------------------- /libs/esl/managed/.gitignore: -------------------------------------------------------------------------------- 1 | swig/ 2 | *.VC.db 3 | *.VC.VC.opendb 4 | -------------------------------------------------------------------------------- /libs/iksemel/acsite.m4: -------------------------------------------------------------------------------- 1 | m4_include([build/libgnutls.m4]) 2 | 3 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/test/cgi.h: -------------------------------------------------------------------------------- 1 | void 2 | test_server_cgi(void); 3 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/test/client.h: -------------------------------------------------------------------------------- 1 | void 2 | test_client(void); 3 | -------------------------------------------------------------------------------- /src/mod/formats/mod_shout/MPGLIB_TODO: -------------------------------------------------------------------------------- 1 | 2 | apply 'VBR' bugfix 3 | -------------------------------------------------------------------------------- /src/mod/sdk/autotools/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | autoreconf -i -f 3 | -------------------------------------------------------------------------------- /w32/Console/FreeSwitchConsole.rc: -------------------------------------------------------------------------------- 1 | #include "switch_version.rc2" 2 | -------------------------------------------------------------------------------- /w32/Library/FreeSwitchCoreLib.rc: -------------------------------------------------------------------------------- 1 | #include "switch_version.rc2" 2 | -------------------------------------------------------------------------------- /docs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docs/COPYING -------------------------------------------------------------------------------- /libs/apr/network_io/os2/inet_ntop.c: -------------------------------------------------------------------------------- 1 | #include "../unix/inet_ntop.c" 2 | -------------------------------------------------------------------------------- /libs/apr/network_io/os2/inet_pton.c: -------------------------------------------------------------------------------- 1 | #include "../unix/inet_pton.c" 2 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/test/parse_xml.h: -------------------------------------------------------------------------------- 1 | void 2 | test_parse_xml(void); 3 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/test/serialize.h: -------------------------------------------------------------------------------- 1 | void 2 | test_serialize(void); 3 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod/formats/mod_vlc/README: -------------------------------------------------------------------------------- 1 | http://wiki.freeswitch.org/wiki/Mod_vlc -------------------------------------------------------------------------------- /src/mod/languages/mod_perl/perlibs.h.in: -------------------------------------------------------------------------------- 1 | #define PERL_LIB "@PERL_LIB@" 2 | -------------------------------------------------------------------------------- /htdocs/slim.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/htdocs/slim.swf -------------------------------------------------------------------------------- /libs/apr/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/CHANGES -------------------------------------------------------------------------------- /libs/apr/file_io/os2/filepath_util.c: -------------------------------------------------------------------------------- 1 | #include "../unix/filepath_util.c" 2 | -------------------------------------------------------------------------------- /libs/apr/test/aprtest.def: -------------------------------------------------------------------------------- 1 | MODULE LIBC.NLM 2 | MODULE APRLIB.NLM 3 | 4 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/test/server_abyss.h: -------------------------------------------------------------------------------- 1 | void 2 | test_server_abyss(void); 3 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/binmode-rpc-kit/examples/good-3.binmode: -------------------------------------------------------------------------------- 1 | binmode-rpc:RI -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/binmode-rpc-kit/examples/invalid-3.binmode: -------------------------------------------------------------------------------- 1 | binmode-rpc:R< -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/acinclude.m4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conf/FreeMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/FreeMono.ttf -------------------------------------------------------------------------------- /debian/freeswitch-mod-pocketsphinx.install.tmpl: -------------------------------------------------------------------------------- 1 | /usr/share/freeswitch/grammar 2 | -------------------------------------------------------------------------------- /fonts/FreeMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fonts/FreeMono.ttf -------------------------------------------------------------------------------- /fonts/FreeSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fonts/FreeSans.ttf -------------------------------------------------------------------------------- /images/cluecon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/images/cluecon.jpg -------------------------------------------------------------------------------- /images/cluecon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/images/cluecon.png -------------------------------------------------------------------------------- /libs/libvpx/third_party/googletest/gtest.mk: -------------------------------------------------------------------------------- 1 | GTEST_SRCS-yes += src/gtest-all.cc 2 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/binmode-rpc-kit/examples/invalid-1.binmode: -------------------------------------------------------------------------------- 1 | binmode-rpc2:RI -------------------------------------------------------------------------------- /src/mod/applications/.gitignore: -------------------------------------------------------------------------------- 1 | */Makefile.in 2 | */Makefile 3 | */mod_*.log 4 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/po/cat-id-tbl.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conf/freeswitch.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /debian/freeswitch-mod-java.install.tmpl: -------------------------------------------------------------------------------- 1 | /usr/share/freeswitch/scripts/freeswitch.jar 2 | -------------------------------------------------------------------------------- /debian/freeswitch-mod-python.install.tmpl: -------------------------------------------------------------------------------- 1 | /usr/lib/python2*/*-packages/freeswitch.py 2 | -------------------------------------------------------------------------------- /fonts/FreeSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fonts/FreeSerif.ttf -------------------------------------------------------------------------------- /libs/libteletone/NEWS: -------------------------------------------------------------------------------- 1 | Developed on UNIX where the motto is "no news is good news!". 2 | -------------------------------------------------------------------------------- /libs/libvpx/vp8/exports_dec: -------------------------------------------------------------------------------- 1 | data vpx_codec_vp8_dx_algo 2 | text vpx_codec_vp8_dx 3 | -------------------------------------------------------------------------------- /libs/libvpx/vp8/exports_enc: -------------------------------------------------------------------------------- 1 | data vpx_codec_vp8_cx_algo 2 | text vpx_codec_vp8_cx 3 | -------------------------------------------------------------------------------- /libs/libvpx/vp9/exports_dec: -------------------------------------------------------------------------------- 1 | data vpx_codec_vp9_dx_algo 2 | text vpx_codec_vp9_dx 3 | -------------------------------------------------------------------------------- /libs/libvpx/vp9/exports_enc: -------------------------------------------------------------------------------- 1 | data vpx_codec_vp9_cx_algo 2 | text vpx_codec_vp9_cx 3 | -------------------------------------------------------------------------------- /libs/srtp/AUTHORS: -------------------------------------------------------------------------------- 1 | David A. McGrew 2 | Cisco Systems, Inc. 3 | mcgrew@cisco.com 4 | 5 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/debian/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /debian/freeswitch-mod-managed.install.tmpl: -------------------------------------------------------------------------------- 1 | /usr/lib/freeswitch/mod/FreeSWITCH.Managed.dll 2 | -------------------------------------------------------------------------------- /debian/freeswitch-mod-python3.install.tmpl: -------------------------------------------------------------------------------- 1 | /usr/lib/python3*/*-packages/freeswitch.py 2 | -------------------------------------------------------------------------------- /fonts/FreeMonoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fonts/FreeMonoBold.ttf -------------------------------------------------------------------------------- /fonts/FreeSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fonts/FreeSansBold.ttf -------------------------------------------------------------------------------- /fonts/FreeSerifBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fonts/FreeSerifBold.ttf -------------------------------------------------------------------------------- /fonts/README.fonts: -------------------------------------------------------------------------------- 1 | Fonts in this folder were downloaded from http://openfontlibrary.org 2 | -------------------------------------------------------------------------------- /images/default-mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/images/default-mute.png -------------------------------------------------------------------------------- /libs/apr/images/bug.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/bug.gif -------------------------------------------------------------------------------- /libs/apr/images/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/bug.png -------------------------------------------------------------------------------- /libs/apr/images/tip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/tip.gif -------------------------------------------------------------------------------- /libs/apr/images/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/tip.png -------------------------------------------------------------------------------- /libs/libyuv/tools_libyuv/msan/OWNERS: -------------------------------------------------------------------------------- 1 | pbos@chromium.org 2 | phoglund@chromium.org 3 | 4 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/turbocharger/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | clean: 3 | distclean: 4 | install: 5 | dep: -------------------------------------------------------------------------------- /scripts/ci/test_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ./bootstrap.sh -j 3 | ./configure -C 4 | make 5 | -------------------------------------------------------------------------------- /scripts/perl/timezones/data/.gitignore: -------------------------------------------------------------------------------- 1 | tzdb-* 2 | zones-* 3 | version 4 | tzdb-latest.tar.lz -------------------------------------------------------------------------------- /src/mod/codecs/mod_yuv/Makefile: -------------------------------------------------------------------------------- 1 | BASE=../../../.. 2 | include $(BASE)/build/modmake.rules 3 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_sofia/test/test_run_sipp.sh: -------------------------------------------------------------------------------- 1 | #/bin/sh 2 | ./sipp-based-tests 3 | 4 | -------------------------------------------------------------------------------- /src/mod/languages/mod_perl/.gitattributes: -------------------------------------------------------------------------------- 1 | mod_perl_wrap.cpp -diff 2 | freeswitch.pm -diff 3 | -------------------------------------------------------------------------------- /src/mod/languages/mod_perl/perlibs.h: -------------------------------------------------------------------------------- 1 | #define PERL_LIB "C:\\perl\\lib\\CORE\\perl58.lib" 2 | -------------------------------------------------------------------------------- /tests/unit/run-tests.mk: -------------------------------------------------------------------------------- 1 | .DEFAULT: 2 | ./test.sh "$@" 3 | 4 | all: $(TEST_LIST) 5 | 6 | -------------------------------------------------------------------------------- /fonts/FreeMonoOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fonts/FreeMonoOblique.ttf -------------------------------------------------------------------------------- /fonts/FreeSansOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fonts/FreeSansOblique.ttf -------------------------------------------------------------------------------- /fonts/FreeSerifItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fonts/FreeSerifItalic.ttf -------------------------------------------------------------------------------- /fscomm/resources/test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/resources/test.wav -------------------------------------------------------------------------------- /images/default-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/images/default-avatar.png -------------------------------------------------------------------------------- /libs/apr/images/ball1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/ball1.gif -------------------------------------------------------------------------------- /libs/apr/images/ball1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/ball1.png -------------------------------------------------------------------------------- /libs/apr/images/ball2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/ball2.gif -------------------------------------------------------------------------------- /libs/apr/images/ball2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/ball2.png -------------------------------------------------------------------------------- /libs/apr/images/master.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/master.gif -------------------------------------------------------------------------------- /libs/apr/images/master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/master.png -------------------------------------------------------------------------------- /libs/apr/libaprnw.mcp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/libaprnw.mcp.zip -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/binmode-rpc-kit/examples/good-2.binmode: -------------------------------------------------------------------------------- 1 | binmode-rpc:CUaddAII -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/binmode-rpc-kit/examples/invalid-2.binmode: -------------------------------------------------------------------------------- 1 | binmode-rpc:ROUstringBxyz -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/po/stamp-cat-id: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_khomp/include/revision.h: -------------------------------------------------------------------------------- 1 | #define MOD_KHOMP_VERSION "1.0 - (rev: 6034)" 2 | -------------------------------------------------------------------------------- /src/mod/languages/mod_managed/monolibx86.cmd: -------------------------------------------------------------------------------- 1 | lib /nologo /def:mono.def /out:mono.lib /machine:x86 -------------------------------------------------------------------------------- /src/mod/languages/mod_python/.gitattributes: -------------------------------------------------------------------------------- 1 | mod_python_wrap.cpp -diff 2 | freeswitch.py -diff 3 | -------------------------------------------------------------------------------- /src/mod/languages/mod_python3/.gitattributes: -------------------------------------------------------------------------------- 1 | mod_python_wrap.cpp -diff 2 | freeswitch.py -diff 3 | -------------------------------------------------------------------------------- /w32/Setup/CustomActions/Setup.CA.DownloadOpenH264/.gitignore: -------------------------------------------------------------------------------- 1 | ICSharpCode.SharpZipLib.dll 2 | bin/ -------------------------------------------------------------------------------- /clients/flex/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mxmlc -static-link-runtime-shared-libraries freeswitch.mxml 3 | -------------------------------------------------------------------------------- /clients/flex/freeswitch.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/clients/flex/freeswitch.swf -------------------------------------------------------------------------------- /debian/freeswitch-systemd.freeswitch.tmpfile: -------------------------------------------------------------------------------- 1 | d /var/run/freeswitch 0755 freeswitch freeswitch - - 2 | -------------------------------------------------------------------------------- /debian/freeswitch-sysvinit.freeswitch.default: -------------------------------------------------------------------------------- 1 | # /etc/default/freeswitch 2 | DAEMON_OPTS="-nonat" 3 | -------------------------------------------------------------------------------- /debian/python-esl.install: -------------------------------------------------------------------------------- 1 | usr/lib/python*/*-packages/_ESL.so 2 | usr/lib/python*/*-packages/ESL.py 3 | -------------------------------------------------------------------------------- /fscomm/resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/resources/splash.png -------------------------------------------------------------------------------- /libs/apr/images/caution.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/caution.gif -------------------------------------------------------------------------------- /libs/apr/images/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/caution.png -------------------------------------------------------------------------------- /libs/apr/images/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/warning.gif -------------------------------------------------------------------------------- /libs/apr/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/warning.png -------------------------------------------------------------------------------- /libs/apr/misc/netware/aprlib.def: -------------------------------------------------------------------------------- 1 | MODULE LIBC.NLM 2 | MODULE WS2_32.NLM 3 | EXPORT @aprlib.imp 4 | -------------------------------------------------------------------------------- /libs/esl/eslmake.rules.in: -------------------------------------------------------------------------------- 1 | SYSTEM_CFLAGS=@CFLAGS@ 2 | SYSTEM_LDFLAGS=@LDFLAGS@ 3 | CXX=@CXX@ 4 | 5 | -------------------------------------------------------------------------------- /libs/esl/switch_version.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/switch_version.rc2 -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/binmode-rpc-kit/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | clean: 3 | distclean: 4 | install: 5 | dep: 6 | -------------------------------------------------------------------------------- /scripts/perl/POE-Filter-FSSocket/INSTALL: -------------------------------------------------------------------------------- 1 | perl Makefile.PL 2 | make 3 | make test 4 | make install 5 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/debian/dirs: -------------------------------------------------------------------------------- 1 | /var/run/gsm-utils 2 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient00/shared.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient01/shared.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/old-stuff/asterisk/README: -------------------------------------------------------------------------------- 1 | Skypopen for asterisk does not work yet. 2 | -------------------------------------------------------------------------------- /tests/unit/conf/FreeMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/tests/unit/conf/FreeMono.ttf -------------------------------------------------------------------------------- /tests/unit/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/tests/unit/images/banner.png -------------------------------------------------------------------------------- /clients/flex/warning-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/clients/flex/warning-icon.png -------------------------------------------------------------------------------- /fonts/FreeMonoBoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fonts/FreeMonoBoldOblique.ttf -------------------------------------------------------------------------------- /fonts/FreeSansBoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fonts/FreeSansBoldOblique.ttf -------------------------------------------------------------------------------- /fonts/FreeSerifBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fonts/FreeSerifBoldItalic.ttf -------------------------------------------------------------------------------- /fscomm/resources/pref_audio.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/resources/pref_audio.gif -------------------------------------------------------------------------------- /fscomm/resources/pref_sip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/resources/pref_sip.png -------------------------------------------------------------------------------- /libs/apr/images/ScanDocBig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/ScanDocBig.jpg -------------------------------------------------------------------------------- /libs/xmlrpc-c/include/xmlrpc-c/oldxmlrpc.h: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | -------------------------------------------------------------------------------- /src/mod/applications/mod_av/.gitignore: -------------------------------------------------------------------------------- 1 | test/test_BT7.mp4 2 | test/test_RGB.mp4 3 | test/test_packetizer 4 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/.gitignore: -------------------------------------------------------------------------------- 1 | !/gsmlib/gsmlib-*/aclocal.m4 2 | !/gsmlib/gsmlib-*/configure 3 | -------------------------------------------------------------------------------- /src/mod/languages/mod_java/.gitattributes: -------------------------------------------------------------------------------- 1 | switch_swig_wrap.cpp -diff 2 | src/org/freeswitch/swig/* -diff 3 | -------------------------------------------------------------------------------- /w32/Console/switch_version.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/Console/switch_version.rc2 -------------------------------------------------------------------------------- /w32/Library/switch_version.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/Library/switch_version.rc2 -------------------------------------------------------------------------------- /clients/flex/freeswitch-h264.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/clients/flex/freeswitch-h264.swf -------------------------------------------------------------------------------- /conf/insideout/lang/de/vm/tts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/insideout/lang/de/vm/tts.xml -------------------------------------------------------------------------------- /debian/freeswitch-timezones.install: -------------------------------------------------------------------------------- 1 | conf/vanilla/autoload_configs/timezones.conf.xml /usr/share/freeswitch/tz 2 | -------------------------------------------------------------------------------- /docs/OPENH264_BINARY_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docs/OPENH264_BINARY_LICENSE.txt -------------------------------------------------------------------------------- /fscomm/resources/pref_general.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/resources/pref_general.jpg -------------------------------------------------------------------------------- /fscomm/resources/taskbar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/resources/taskbar_icon.png -------------------------------------------------------------------------------- /libs/apr/images/ScanDocSmall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/ScanDocSmall.jpg -------------------------------------------------------------------------------- /libs/libyuv/tools_libyuv/ubsan/OWNERS: -------------------------------------------------------------------------------- 1 | pbos@webrtc.org 2 | phoglund@webrtc.org 3 | fbarchard@chromium.org 4 | 5 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/binmode-rpc-kit/examples/good-5.binmode: -------------------------------------------------------------------------------- 1 | binmode-rpc:RA>foo>bar<>baz<< -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/binmode-rpc-kit/examples/good-6.binmode: -------------------------------------------------------------------------------- 1 | binmode-rpc:RU"Copyright © 1995 J. Random Hacker -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient00/skypenameA/main.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient00/skypenameB/main.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient01/skypenameA/main.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient01/skypenameB/main.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient01/skypenameC/main.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod/timers/mod_posix_timer/test/README: -------------------------------------------------------------------------------- 1 | Stress test for mod_posix_timer. Runs without FreeSWITCH. 2 | 3 | -------------------------------------------------------------------------------- /support-d/.screenrc: -------------------------------------------------------------------------------- 1 | hardstatus alwaysignore 2 | startup_message off 3 | escape ^\b 4 | defscrollback 8000 5 | -------------------------------------------------------------------------------- /tests/unit/images/signalwire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/tests/unit/images/signalwire.png -------------------------------------------------------------------------------- /w32/Setup/inno_setup/freepbx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/Setup/inno_setup/freepbx.ico -------------------------------------------------------------------------------- /conf/insideout/lang/de/demo/demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/insideout/lang/de/demo/demo.xml -------------------------------------------------------------------------------- /conf/insideout/lang/fr/vm/sounds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/insideout/lang/fr/vm/sounds.xml -------------------------------------------------------------------------------- /fscomm/resources/pref_accounts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/resources/pref_accounts.jpg -------------------------------------------------------------------------------- /libs/libscgi/FSSCGI.i: -------------------------------------------------------------------------------- 1 | %{ 2 | #include "scgi.h" 3 | #include "scgi_oop.h" 4 | %} 5 | 6 | %include "scgi_oop.h" 7 | -------------------------------------------------------------------------------- /libs/libsndfile/doc/libsndfile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libsndfile/doc/libsndfile.jpg -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient00/skypenameA/config.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient00/skypenameB/config.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient01/skypenameA/config.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient01/skypenameB/config.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient01/skypenameC/config.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /w32/Setup/inno_setup/freeswitch.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/Setup/inno_setup/freeswitch.ico -------------------------------------------------------------------------------- /debian/libfreeswitch-dev.install: -------------------------------------------------------------------------------- 1 | /usr/include 2 | /usr/lib/libfreeswitch.so 3 | /usr/lib/*.a 4 | /usr/lib/pkgconfig 5 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/intl/VERSION: -------------------------------------------------------------------------------- 1 | GNU gettext library from gettext-0.10.35 2 | -------------------------------------------------------------------------------- /w32/Setup/inno_setup/vcredist_x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/Setup/inno_setup/vcredist_x64.exe -------------------------------------------------------------------------------- /w32/Setup/inno_setup/vcredist_x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/Setup/inno_setup/vcredist_x86.exe -------------------------------------------------------------------------------- /clients/flex/Sound_of_phone_ringing2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/clients/flex/Sound_of_phone_ringing2.mp3 -------------------------------------------------------------------------------- /libs/libyuv/unit_test/testdata/tegra3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/unit_test/testdata/tegra3.txt -------------------------------------------------------------------------------- /libs/libyuv/unit_test/testdata/test0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/unit_test/testdata/test0.jpg -------------------------------------------------------------------------------- /libs/libyuv/unit_test/testdata/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/unit_test/testdata/test1.jpg -------------------------------------------------------------------------------- /libs/libyuv/unit_test/testdata/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/unit_test/testdata/test2.jpg -------------------------------------------------------------------------------- /libs/libyuv/unit_test/testdata/test3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/unit_test/testdata/test3.jpg -------------------------------------------------------------------------------- /libs/libyuv/unit_test/testdata/test4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/unit_test/testdata/test4.jpg -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/debian/gsm-utils.docs: -------------------------------------------------------------------------------- 1 | NEWS 2 | README 3 | TODO 4 | doc/FAQ 5 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient00/skypenameA/httpfe/cookies.dat: -------------------------------------------------------------------------------- 1 | B -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient00/skypenameB/httpfe/cookies.dat: -------------------------------------------------------------------------------- 1 | B -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient01/skypenameA/httpfe/cookies.dat: -------------------------------------------------------------------------------- 1 | B -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient01/skypenameB/httpfe/cookies.dat: -------------------------------------------------------------------------------- 1 | B -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient01/skypenameC/httpfe/cookies.dat: -------------------------------------------------------------------------------- 1 | B -------------------------------------------------------------------------------- /src/mod/languages/mod_managed/.gitattributes: -------------------------------------------------------------------------------- 1 | *_wrap.cxx -diff 2 | *_wrap.*.cxx -diff 3 | swig.cs -diff 4 | swig.*.cs -diff 5 | -------------------------------------------------------------------------------- /tests/unit/pcap/milliwatt.pcmu.rtp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/tests/unit/pcap/milliwatt.pcmu.rtp.pcap -------------------------------------------------------------------------------- /w32/Setup/inno_setup/freeswitch_1.0.4.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/Setup/inno_setup/freeswitch_1.0.4.iss -------------------------------------------------------------------------------- /libs/libyuv/AUTHORS: -------------------------------------------------------------------------------- 1 | # Names should be added to this file like so: 2 | # Name or Organization 3 | 4 | Google Inc. 5 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/Windows/UsingCURLinWin32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/Windows/UsingCURLinWin32.txt -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/abyss/htdocs/pwrabyss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/lib/abyss/htdocs/pwrabyss.gif -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/turbocharger/mod_gzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/tools/turbocharger/mod_gzip.c -------------------------------------------------------------------------------- /scripts/applescript/FreeSWITCH Dialer.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/applescript/FreeSWITCH Dialer.scpt -------------------------------------------------------------------------------- /src/mod/databases/mod_mariadb/mod_mariadb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/databases/mod_mariadb/mod_mariadb.c -------------------------------------------------------------------------------- /src/mod/endpoints/mod_khomp/docs/Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_khomp/docs/Manual.pdf -------------------------------------------------------------------------------- /src/mod/endpoints/mod_khomp/docs/README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_khomp/docs/README.pdf -------------------------------------------------------------------------------- /w32/Setup/inno_setup/freeswitch_freepbx.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/Setup/inno_setup/freeswitch_freepbx.iss -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/binmode-rpc-kit/examples/good-4.binmode: -------------------------------------------------------------------------------- 1 | binmode-rpc:RFSU faultCodeIU faultStringUAn error occurred -------------------------------------------------------------------------------- /src/mod/applications/mod_av/test/cluecon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/applications/mod_av/test/cluecon.png -------------------------------------------------------------------------------- /src/mod/applications/mod_commands/test/.gitignore: -------------------------------------------------------------------------------- 1 | .dirstamp 2 | .libs/ 3 | .deps/ 4 | test_mod_commands*.o 5 | test_mod_commands 6 | -------------------------------------------------------------------------------- /src/mod/applications/mod_fsv/freeswitch-4k.yuv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/applications/mod_fsv/freeswitch-4k.yuv -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/asterisk/asound.conf: -------------------------------------------------------------------------------- 1 | #defaults.pcm.rate_converter "speexrate" 2 | defaults.pcm.rate_converter "linear" 3 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/debian/libgsmme-dev.docs: -------------------------------------------------------------------------------- 1 | doc/README.developers 2 | doc/README.NLS 3 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_khomp/docs/Manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_khomp/docs/Manual.html -------------------------------------------------------------------------------- /src/mod/endpoints/mod_khomp/docs/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_khomp/docs/README.html -------------------------------------------------------------------------------- /src/mod/endpoints/mod_khomp/docs/README_en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_khomp/docs/README_en.pdf -------------------------------------------------------------------------------- /src/mod/endpoints/mod_rtmp/libamf/tests/amf0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_rtmp/libamf/tests/amf0 -------------------------------------------------------------------------------- /src/mod/formats/mod_sndfile/test/sounds/hi.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/formats/mod_sndfile/test/sounds/hi.wav -------------------------------------------------------------------------------- /tests/unit/pcap/milliwatt.long.pcmu.rtp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/tests/unit/pcap/milliwatt.long.pcmu.rtp.pcap -------------------------------------------------------------------------------- /w32/Setup/inno_setup/freeswitch_fusionpbx.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/Setup/inno_setup/freeswitch_fusionpbx.iss -------------------------------------------------------------------------------- /debian/apt_sources.list: -------------------------------------------------------------------------------- 1 | deb http://httpredir.debian.org/debian jessie main 2 | deb http://files.freeswitch.org/repo/deb/debian/ jessie main 3 | -------------------------------------------------------------------------------- /libs/iksemel/doc/Makefile.am: -------------------------------------------------------------------------------- 1 | ## 2 | ## Process this file with automake to produce Makefile.in 3 | ## 4 | 5 | #info_TEXINFOS = iksemel.texi 6 | -------------------------------------------------------------------------------- /libs/srtp/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Meson build file maintainers 2 | meson.build @nirbheek @tp-m @xhaakon 3 | meson_options.txt @nirbheek @tp-m @xhaakon 4 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/abyss/example/htdocs/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/lib/abyss/example/htdocs/index.htm -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/binmode-rpc-kit/examples/good-1.binmode: -------------------------------------------------------------------------------- 1 | binmode-rpc:RAItfD2.75819980717T14:08:55UfooBabcSUrunt -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/turbocharger/mod_gzip.c.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/tools/turbocharger/mod_gzip.c.diff -------------------------------------------------------------------------------- /src/mod/applications/mod_fsv/freeswitch-720p.yuv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/applications/mod_fsv/freeswitch-720p.yuv -------------------------------------------------------------------------------- /src/mod/applications/mod_fsv/freeswitch-cif.yuv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/applications/mod_fsv/freeswitch-cif.yuv -------------------------------------------------------------------------------- /src/mod/applications/mod_test/test/sounds/hi.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/applications/mod_test/test/sounds/hi.wav -------------------------------------------------------------------------------- /src/mod/endpoints/mod_khomp/docs/User_Guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_khomp/docs/User_Guide.html -------------------------------------------------------------------------------- /src/mod/endpoints/mod_khomp/docs/User_Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_khomp/docs/User_Guide.pdf -------------------------------------------------------------------------------- /src/mod/formats/mod_opusfile/test/sounds/hi.opus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/formats/mod_opusfile/test/sounds/hi.opus -------------------------------------------------------------------------------- /src/mod/sdk/autotools/Makefile.am: -------------------------------------------------------------------------------- 1 | ACLOCAL_AMFLAGS = -I m4 2 | AUTOMAKE_OPTIONS = foreign no-dist subdir-objects 3 | 4 | SUBDIRS = src 5 | -------------------------------------------------------------------------------- /conf/vanilla/yaml/extensions.yaml: -------------------------------------------------------------------------------- 1 | default: 2 | ${destination_number} =~ (9664): 3 | set: foo=bar 4 | playback: ${hold_music} 5 | -------------------------------------------------------------------------------- /devel-bootstrap.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | export CFLAGS="-ggdb3 -O0" 3 | export CXXFLAGS="-ggdb3 -O0" 4 | ./bootstrap.sh -j 5 | ./configure $@ 6 | 7 | -------------------------------------------------------------------------------- /libs/libteletone/README: -------------------------------------------------------------------------------- 1 | Install is common: 2 | 3 | ./configure --with-prefix= 4 | make 5 | make install 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/conf/abyss_root/htdocs/pwrabyss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/conf/abyss_root/htdocs/pwrabyss.gif -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/abyss/example/htdocs/pwrabyss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/lib/abyss/example/htdocs/pwrabyss.gif -------------------------------------------------------------------------------- /src/mod/applications/mod_fsv/freeswitch-1080p.yuv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/applications/mod_fsv/freeswitch-1080p.yuv -------------------------------------------------------------------------------- /src/mod/applications/mod_test/test/sounds/agent.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/applications/mod_test/test/sounds/agent.wav -------------------------------------------------------------------------------- /src/mod/applications/mod_test/test/sounds/test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/applications/mod_test/test/sounds/test.wav -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/debian/gsm-utils.examples: -------------------------------------------------------------------------------- 1 | contrib/gsm-utils.cron.d 2 | contrib/gsm-utils.init 3 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/tests/spbi1.pb: -------------------------------------------------------------------------------- 1 | 1|Nummer 4|4444444 2 | 3|Nummer 3|3333333 3 | 5|same name|12345 4 | -------------------------------------------------------------------------------- /swig_common.i: -------------------------------------------------------------------------------- 1 | %typemap(newfree) char * "free($1);"; 2 | %newobject getGlobalVariable; 3 | %rename(msleep) switch_msleep; 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /conf/minimal/autoload_configs/db.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /conf/testing/dialplan/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /conf/testing/dialplan/public.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /conf/vanilla/yaml/mod_yaml.yaml: -------------------------------------------------------------------------------- 1 | settings: 2 | #look for foo.conf.yaml when foo.conf is looked for in the xml 3 | bind_config: true 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /scripts/lua/helloworld.lua: -------------------------------------------------------------------------------- 1 | -- Simple answer and playback lua example 2 | session:answer(); 3 | session:streamFile("blah.wav"); 4 | session:hangup(); 5 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/gsmlib-1.10.debmg/debian/gsm-utils.undocumented: -------------------------------------------------------------------------------- 1 | gsmsmsspool.1 2 | gsmsmsrequeue.8 3 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/old-stuff/multiple-instance-same-skype-username/README: -------------------------------------------------------------------------------- 1 | # just execute the file 2 | 3 | sh ./multi.sh 4 | 5 | -------------------------------------------------------------------------------- /w32/Setup/inno_setup/create_freepbx.sql: -------------------------------------------------------------------------------- 1 | CREATE USER 'freepbx'@'localhost' IDENTIFIED BY 'freepbx'; 2 | GRANT ALL ON *.* TO 'freepbx'@'localhost'; 3 | -------------------------------------------------------------------------------- /libs/apr/configure.gnu: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | srcpath=$(dirname $0 2>/dev/null ) || srcpath="." 3 | $srcpath/configure "$@" --disable-shared --with-pic 4 | 5 | -------------------------------------------------------------------------------- /libs/apr/misc/netware/apr.xdc: -------------------------------------------------------------------------------- 1 | BAGFMPK_Bag MT Safe NLM -------------------------------------------------------------------------------- /libs/iksemel/configure.gnu: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | srcpath=$(dirname $0 2>/dev/null ) || srcpath="." 3 | $srcpath/configure "$@" --disable-shared --with-pic 4 | 5 | -------------------------------------------------------------------------------- /libs/libvpx/third_party/libwebm/AUTHORS.TXT: -------------------------------------------------------------------------------- 1 | # Names should be added to this file like so: 2 | # Name or Organization 3 | 4 | Google Inc. 5 | -------------------------------------------------------------------------------- /libs/libyuv/tools_libyuv/autoroller/unittests/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/tools_libyuv/autoroller/unittests/.DS_Store -------------------------------------------------------------------------------- /src/mod/applications/mod_test/test/sounds/test_agent.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/applications/mod_test/test/sounds/test_agent.wav -------------------------------------------------------------------------------- /src/mod/codecs/mod_openh264/test/data/case1.packet1.264: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/codecs/mod_openh264/test/data/case1.packet1.264 -------------------------------------------------------------------------------- /src/mod/codecs/mod_openh264/test/data/case1.packet2.264: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/codecs/mod_openh264/test/data/case1.packet2.264 -------------------------------------------------------------------------------- /src/mod/codecs/mod_openh264/test/data/case1.packet3.264: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/codecs/mod_openh264/test/data/case1.packet3.264 -------------------------------------------------------------------------------- /src/mod/codecs/mod_openh264/test/data/case1.packet4.264: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/codecs/mod_openh264/test/data/case1.packet4.264 -------------------------------------------------------------------------------- /src/mod/codecs/mod_openh264/test/data/case1.packet5.264: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/codecs/mod_openh264/test/data/case1.packet5.264 -------------------------------------------------------------------------------- /src/mod/codecs/mod_openh264/test/data/case2.packet1.264: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/codecs/mod_openh264/test/data/case2.packet1.264 -------------------------------------------------------------------------------- /src/mod/codecs/mod_openh264/test/data/case2.packet2.264: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/codecs/mod_openh264/test/data/case2.packet2.264 -------------------------------------------------------------------------------- /src/mod/codecs/mod_openh264/test/data/case2.packet3.264: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/codecs/mod_openh264/test/data/case2.packet3.264 -------------------------------------------------------------------------------- /src/mod/codecs/mod_openh264/test/data/case2.packet4.264: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/codecs/mod_openh264/test/data/case2.packet4.264 -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/tests/spbi2-orig.pb: -------------------------------------------------------------------------------- 1 | 2|Nummer 3|3333333 2 | 4|Nummer 4|4444444 3 | 5|same name|23456 4 | 5 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_h323/compiling.txt: -------------------------------------------------------------------------------- 1 | To compile this module use latest ptlib/h323plis combinations listed at http://www.gnugk.org/compiling-gnugk.html 2 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_sofia/test/voicemail/vm-person.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_sofia/test/voicemail/vm-person.wav -------------------------------------------------------------------------------- /src/mod/formats/mod_sndfile/test/sounds/hello_stereo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/formats/mod_sndfile/test/sounds/hello_stereo.wav -------------------------------------------------------------------------------- /libs/libteletone/configure.gnu: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | srcpath=$(dirname $0 2>/dev/null ) || srcpath="." 3 | $srcpath/configure "$@" --disable-shared --with-pic 4 | 5 | -------------------------------------------------------------------------------- /scripts/c/socket2me/Makefile: -------------------------------------------------------------------------------- 1 | all: socket2me 2 | socket2me: socket2me.c 3 | $(CC) $(CFLAGS) socket2me.c -o socket2me -l spandsp 4 | clean: 5 | rm socket2me 6 | -------------------------------------------------------------------------------- /src/mod/applications/mod_conference/test/conf/font/AEH.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/applications/mod_conference/test/conf/font/AEH.ttf -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/scripts/debugconfig.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | CXXFLAGS="-g -Wall" ./configure --disable-shared 4 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_sofia/.gitignore: -------------------------------------------------------------------------------- 1 | test/Makefile 2 | test/Makefile.in 3 | test/freeswitch.xml.fsxml.tmp 4 | test/test_sofia_funcs 5 | test/test_nuafail 6 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_sofia/test/voicemail/vm-goodbye.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_sofia/test/voicemail/vm-goodbye.wav -------------------------------------------------------------------------------- /conf/minimal/dialplan/public.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /debian/freeswitch-mod-perl.install.tmpl: -------------------------------------------------------------------------------- 1 | debian/tmp/usr/perl/freeswitch.pm /usr/share/perl5 2 | debian/tmp/usr/perl/freeswitch.so /usr/share/perl5/auto/freeswitch 3 | -------------------------------------------------------------------------------- /htdocs/portal/assets/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/htdocs/portal/assets/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /libs/libvpx/vpx_mem/vpx_mem.mk: -------------------------------------------------------------------------------- 1 | MEM_SRCS-yes += vpx_mem.mk 2 | MEM_SRCS-yes += vpx_mem.c 3 | MEM_SRCS-yes += vpx_mem.h 4 | MEM_SRCS-yes += include/vpx_mem_intrnl.h 5 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/debian/watch: -------------------------------------------------------------------------------- 1 | version=2 2 | http://www.pxh.de/fs/gsmlib/download/content.html gsmlib-(.*)\.tar\.gz 3 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/libctb-0.16/manual/refman.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_gsmopen/libctb-0.16/manual/refman.pdf -------------------------------------------------------------------------------- /src/mod/endpoints/mod_sofia/test/voicemail/vm-too-small.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_sofia/test/voicemail/vm-too-small.wav -------------------------------------------------------------------------------- /support-d/rbfs: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | fs_cli -x "fsctl shutdown now" 3 | pkill -9 freeswitch 4 | sleep 1 5 | /usr/local/freeswitch/bin/freeswitch -ncwait -nocal 6 | -------------------------------------------------------------------------------- /w32/Setup/CustomActions/Setup.CA.DownloadOpenH264/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/Setup/CustomActions/Setup.CA.DownloadOpenH264/LICENSE.txt -------------------------------------------------------------------------------- /w32/Setup/inno_setup/create_fusionpbx.sql: -------------------------------------------------------------------------------- 1 | CREATE USER 'fusionpbx'@'localhost' IDENTIFIED BY 'fusionpbx'; 2 | GRANT ALL ON *.* TO 'fusionpbx'@'localhost'; 3 | 4 | -------------------------------------------------------------------------------- /libs/srtp/configure.gnu: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | srcpath=$(dirname $0 2>/dev/null ) || srcpath="." 3 | $srcpath/configure "$@" --disable-shared --with-pic --enable-openssl 4 | 5 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/binmode-rpc-kit/examples/invalid-4.binmode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/tools/binmode-rpc-kit/examples/invalid-4.binmode -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/binmode-rpc-kit/examples/invalid-5.binmode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/tools/binmode-rpc-kit/examples/invalid-5.binmode -------------------------------------------------------------------------------- /src/mod/applications/mod_conference/test/images/signalwire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/applications/mod_conference/test/images/signalwire.png -------------------------------------------------------------------------------- /src/mod/endpoints/mod_sofia/test/voicemail/vm-not_available.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_sofia/test/voicemail/vm-not_available.wav -------------------------------------------------------------------------------- /w32/Setup/inno_setup/FreePBX.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://127.0.0.1/freepbx-v3/ 3 | IDList= 4 | [{000214A0-0000-0000-C000-000000000046}] 5 | Prop3=19,2 6 | -------------------------------------------------------------------------------- /conf/sbc/autoload_configs/post_load_modules.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /htdocs/portal/assets/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/htdocs/portal/assets/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/test/value_datetime.h: -------------------------------------------------------------------------------- 1 | #ifndef VALUE_DATETIME_H_INCLUDED 2 | #define VALUE_DATETIME_H_INCLUDED 3 | 4 | void 5 | test_value_datetime(void); 6 | 7 | #endif 8 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/libctb-0.16/python/src/kbhit.i: -------------------------------------------------------------------------------- 1 | %{ 2 | #include "ctb-0.16/kbhit.h" 3 | %} 4 | 5 | namespace ctb { 6 | 7 | char GetKey(); 8 | 9 | }; 10 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_sofia/test/voicemail/vm-record_message.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_sofia/test/voicemail/vm-record_message.wav -------------------------------------------------------------------------------- /conf/curl/autoload_configs/post_load_modules.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /conf/rayo/autoload_configs/post_load_modules.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /conf/testing/autoload_configs/post_load_modules.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /conf/vanilla/autoload_configs/post_load_modules.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /debian/freeswitch.install: -------------------------------------------------------------------------------- 1 | /usr/bin 2 | fonts/FreeMono.ttf /usr/share/freeswitch/fonts/ 3 | fonts/FreeSans.ttf /usr/share/freeswitch/fonts/ 4 | images/*.png /var/lib/freeswitch/images/ -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/test/serialize_value.h: -------------------------------------------------------------------------------- 1 | #ifndef SERIALIZE_VALUE_H_INCLUDED 2 | #define SERIALIZE_VALUE_H_INCLUDED 3 | 4 | void 5 | test_serialize_value(void); 6 | 7 | #endif 8 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_rtmp/libamf/src/amf_list.h: -------------------------------------------------------------------------------- 1 | typedef struct __amf_list { 2 | uint32 size; 3 | p_amf_node first_element; 4 | p_amf_node last_element; 5 | } amf_list; -------------------------------------------------------------------------------- /src/mod/formats/mod_opusfile/test/sounds/opusfile-test-ogg.bitstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/formats/mod_opusfile/test/sounds/opusfile-test-ogg.bitstream -------------------------------------------------------------------------------- /w32/Setup/inno_setup/FusionPBX.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://127.0.0.1/fusionpbx 3 | IDList= 4 | HotKey=0 5 | [{000214A0-0000-0000-C000-000000000046}] 6 | Prop3=19,2 7 | -------------------------------------------------------------------------------- /conf/insideout/autoload_configs/post_load_modules.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /libs/iksemel/include/Makefile.am: -------------------------------------------------------------------------------- 1 | ## 2 | ## Process this file with automake to produce Makefile.in 3 | ## 4 | 5 | include_HEADERS = iksemel.h 6 | noinst_HEADERS = common.h finetune.h 7 | -------------------------------------------------------------------------------- /scripts/perl/POE-Filter-FSSocket/TODO: -------------------------------------------------------------------------------- 1 | - Support bgapi output 2 | - more example scripts 3 | - more documentation 4 | - sister component that uses this filter 5 | - reconnect handling 6 | -------------------------------------------------------------------------------- /src/mod/applications/mod_conference/.gitignore: -------------------------------------------------------------------------------- 1 | conf/freeswitch.xml.fsxml 2 | test/images/logo-*.png 3 | test/images/signalwire-scaled-*.png 4 | test/test_image 5 | test/test_member 6 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/TODO -------------------------------------------------------------------------------- /w32/Setup/inno_setup/create_freepbx.bat: -------------------------------------------------------------------------------- 1 | cd %1 2 | ping 127.0.0.1 -n 5 -w 1000 > nul 3 | NET START wampmysqld 4 | wamp\bin\mysql\mysql5.1.36\bin\mysql --user=root nul 3 | NET START wampmysqld 4 | wamp\bin\mysql\mysql5.1.36\bin\mysql --user=root Anthony Minessale 2 | Anthony Minessale Anthony Minessale II 3 | -------------------------------------------------------------------------------- /htdocs/portal/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/htdocs/portal/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /htdocs/portal/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/htdocs/portal/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /htdocs/portal/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/htdocs/portal/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/po/de.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/po/de.gmo -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/po/de.po -------------------------------------------------------------------------------- /src/mod/timers/mod_posix_timer/test/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | gcc ../mod_posix_timer.c main.c switch.c -I. -o timer_test -lpthread -lrt -lm -g -DLOG_LEVEL=-1 3 | 4 | clean: 5 | -rm timer_test 6 | 7 | -------------------------------------------------------------------------------- /conf/minimal/dialplan/public/00_stub.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /libs/esl/php/test.php: -------------------------------------------------------------------------------- 1 | sendRecv("api status"); 6 | print $e->getBody(); 7 | 8 | ?> 9 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/tests/spb.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/tests/spb.pb -------------------------------------------------------------------------------- /src/mod/languages/mod_java/src/org/freeswitch/FreeswitchScript.java: -------------------------------------------------------------------------------- 1 | package org.freeswitch; 2 | 3 | public interface FreeswitchScript 4 | { 5 | void run(String uuid, String args); 6 | } 7 | 8 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/util/include/girmath.h: -------------------------------------------------------------------------------- 1 | #ifndef __GIRMATH_H 2 | #define __GIRMATH_H 3 | 4 | #define MIN(a,b) ((a) < (b) ? (a) : (b)) 5 | #define MAX(a,b) ((a) > (b) ? (a) : (b)) 6 | 7 | #endif 8 | 9 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/version.h: -------------------------------------------------------------------------------- 1 | /* Generated by make file rule */ 2 | #define XMLRPC_C_VERSION "1.26.0" 3 | #define XMLRPC_VERSION_MAJOR 1 4 | #define XMLRPC_VERSION_MINOR 26 5 | #define XMLRPC_VERSION_POINT 0 6 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/intl/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/intl/ChangeLog -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/tests/spb2.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/tests/spb2.pb -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/win32/gsmpb.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/win32/gsmpb.dsp -------------------------------------------------------------------------------- /src/mod/formats/mod_opusfile/test/sounds/audiocheck.net_sin_1000Hz_-3dBFS_6s.opus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/formats/mod_opusfile/test/sounds/audiocheck.net_sin_1000Hz_-3dBFS_6s.opus -------------------------------------------------------------------------------- /src/mod/formats/mod_opusfile/test/sounds/audiocheck.net_sin_1000Hz_-3dBFS_6s.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/formats/mod_opusfile/test/sounds/audiocheck.net_sin_1000Hz_-3dBFS_6s.wav -------------------------------------------------------------------------------- /support-d/utils/bt.sh: -------------------------------------------------------------------------------- 1 | gdb /usr/local/freeswitch/bin/freeswitch $1 \ 2 | --eval-command='set pagination off' \ 3 | --eval-command='thread apply all bt' \ 4 | --eval-command='quit' 5 | -------------------------------------------------------------------------------- /conf/minimal/autoload_configs/conference.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /conf/vanilla/autoload_configs/curl.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /libs/apr/file_io/netware/filepath.c: -------------------------------------------------------------------------------- 1 | /* NetWare & Win32 have much in common with regards to file names (both are 2 | * DOSish) so it makes sense to share some code 3 | */ 4 | #include "../win32/filepath.c" 5 | -------------------------------------------------------------------------------- /libs/apr/network_io/beos/socketcommon.c: -------------------------------------------------------------------------------- 1 | #include "../unix/inet_ntop.c" 2 | #include "../unix/inet_pton.c" 3 | #include "../unix/sockets.c" 4 | #include "../unix/sockaddr.c" 5 | #include "../unix/sockopt.c" 6 | -------------------------------------------------------------------------------- /scripts/perl/POE-Filter-FSSocket/t/01_basic.t: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | 3 | use warnings; 4 | use strict; 5 | 6 | use Test::More tests => 1; 7 | 8 | use_ok("POE::Filter::FSSocket"); 9 | 10 | exit; 11 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/gsmlib/gsm_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/gsmlib/gsm_util.h -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/win32/gsmctl.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/win32/gsmctl.dsp -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/win32/gsmlib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/win32/gsmlib.dsp -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/win32/gsmlib.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/win32/gsmlib.dsw -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/win32/gsmsmsd.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/win32/gsmsmsd.dsp -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/win32/testsms.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/win32/testsms.dsp -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/wait.bat: -------------------------------------------------------------------------------- 1 | REM would you believe there is no sleep() in standard windows batchfiles? 2 | @ping 127.0.0.1 -n 2 -w 1000 > nul 3 | @ping 127.0.0.1 -n %1% -w 1000> nul 4 | 5 | -------------------------------------------------------------------------------- /src/mod/languages/mod_java/src/org/freeswitch/DTMFCallback.java: -------------------------------------------------------------------------------- 1 | package org.freeswitch; 2 | 3 | public interface DTMFCallback 4 | { 5 | String onDTMF(Object input, int inputType, String args); 6 | } 7 | 8 | -------------------------------------------------------------------------------- /conf/vanilla/autoload_configs/ivr.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /fscomm/channel.cpp: -------------------------------------------------------------------------------- 1 | #include "channel.h" 2 | 3 | Channel::Channel(QString uuid): 4 | _uuid(uuid) 5 | { 6 | _progressEpoch = 0; 7 | _progressMediaEpoch = 0; 8 | _createdEpoch = 0; 9 | } 10 | -------------------------------------------------------------------------------- /libs/libvpx/codereview.settings: -------------------------------------------------------------------------------- 1 | # This file is used by git cl to get repository specific information. 2 | GERRIT_HOST: True 3 | CODE_REVIEW_SERVER: chromium-review.googlesource.com 4 | GERRIT_SQUASH_UPLOADS: False 5 | -------------------------------------------------------------------------------- /src/mod/applications/mod_prefix/conf/prefix.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/gsmlib/gsm_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/gsmlib/gsm_util.cc -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/win32/gsmsendsms.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/win32/gsmsendsms.dsp -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/win32/testgsmlib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/win32/testgsmlib.dsp -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/win32/testsms2.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/win32/testsms2.dsp -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/win_iconv/readme.txt: -------------------------------------------------------------------------------- 1 | win_iconv is a iconv library using Win32 API to conversion. 2 | win_iconv is placed in the public domain. 3 | Yukihiro Nakadaira 4 | -------------------------------------------------------------------------------- /scripts/perl/FreeSWITCH/debian/changelog: -------------------------------------------------------------------------------- 1 | libfreeswitch-client-perl (1.0-1) unstable; urgency=low 2 | 3 | * New upstream release. 4 | 5 | -- Massimo Cetra Sat, 14 Jun 2008 17:38:34 +0200 6 | 7 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/asterisk/ciapalo: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | open(FILEOUT, ">> /tmp/smses_received"); 3 | while(<>){ 4 | print FILEOUT $_ ; 5 | printf FILEOUT "\n" ; 6 | } 7 | close(FILEOUT); 8 | 9 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/win32/gsmsmsstore.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/win32/gsmsmsstore.dsp -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/tests/testsms-output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/tests/testsms-output.txt -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/tests/testspb-output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/tests/testspb-output.txt -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/tests/testspb2-output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/tests/testspb2-output.txt -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/tests/testssms-output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/tests/testssms-output.txt -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/windows-service/wait.cmd: -------------------------------------------------------------------------------- 1 | REM would you believe there is no sleep() in standard windows batchfiles? 2 | @ping 127.0.0.1 -n 2 -w 1000 > nul 3 | @ping 127.0.0.1 -n %1% -w 1000> nul 4 | 5 | -------------------------------------------------------------------------------- /conf/curl/autoload_configs/limit.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /conf/sbc/autoload_configs/limit.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /conf/testing/directory/default/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /conf/vanilla/autoload_configs/db.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /libs/libyuv/OWNERS: -------------------------------------------------------------------------------- 1 | fbarchard@chromium.org 2 | magjed@chromium.org 3 | 4 | per-file *.gn=phoglund@chromium.org 5 | per-file .gitignore=* 6 | per-file AUTHORS=* 7 | per-file DEPS=* 8 | per-file PRESUBMIT.py=phoglund@chromium.org 9 | -------------------------------------------------------------------------------- /libs/miniupnpc/mingw32make.bat: -------------------------------------------------------------------------------- 1 | @mingw32-make -f Makefile.mingw %1 2 | @if errorlevel 1 goto end 3 | @strip upnpc-static.exe 4 | @upx --best upnpc-static.exe 5 | @strip upnpc-shared.exe 6 | @upx --best upnpc-shared.exe 7 | :end 8 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/curl_transport/lock_pthread.h: -------------------------------------------------------------------------------- 1 | #ifndef CURL_LOCK_PTHREAD_H_INCLUDED 2 | #define CURL_LOCK_PTHREAD_H_INCLUDED 3 | 4 | #include "lock.h" 5 | 6 | lock * 7 | curlLock_create_pthread(void); 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /scripts/yes_no.gram: -------------------------------------------------------------------------------- 1 | #JSGF V1.0; 2 | 3 | /** 4 | * JSGF Grammar for example 5 | */ 6 | 7 | grammar example; 8 | 9 | = [ yes ]; 10 | = [ no ]; 11 | 12 | public = [ | ]; 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/mod/applications/mod_curl/conf/autoload_configs/curl.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/switch_swig.i: -------------------------------------------------------------------------------- 1 | %module fs_elmoscript 2 | %typemap(newfree) char * "free($1);"; 3 | %newobject getGlobalVariable; 4 | %{ 5 | #include "switch.h" 6 | %} 7 | 8 | %include "/usr/local/freeswitch/include/switch.h" 9 | 10 | -------------------------------------------------------------------------------- /conf/curl/autoload_configs/modules.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /conf/insideout/autoload_configs/limit.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/abyss/src/socket_win.h: -------------------------------------------------------------------------------- 1 | #ifndef SOCKET_WIN_H_INCLUDED 2 | #define SOCKET_WIN_H_INCLUDED 3 | 4 | void 5 | SocketWinInit(const char ** const errorP); 6 | 7 | void 8 | SocketWinTerm(void); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/mod/applications/mod_test/test/sounds/ivr-please_state_your_name_and_reason_for_calling.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/applications/mod_test/test/sounds/ivr-please_state_your_name_and_reason_for_calling.wav -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/libctb-0.16/python/src/linux/wxctb.i: -------------------------------------------------------------------------------- 1 | // This file is created automatically, don't change it! 2 | %module wxctb 3 | typedef int size_t; 4 | %include timer.i 5 | %include serport.i 6 | %include ../kbhit.i 7 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/abyss/src/trace.h: -------------------------------------------------------------------------------- 1 | #ifndef TRACE_H_INCLUDED 2 | #define TRACE_H_INCLUDED 3 | 4 | void 5 | TraceMsg(const char * const fmt, ...); 6 | 7 | void 8 | TraceExit(const char * const fmt, ...); 9 | 10 | #endif 11 | 12 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/cpp/test/server_abyss.hpp: -------------------------------------------------------------------------------- 1 | #include "tools.hpp" 2 | 3 | class serverAbyssTestSuite : public testSuite { 4 | 5 | public: 6 | virtual std::string suiteName(); 7 | virtual void runtests(unsigned int const); 8 | }; 9 | -------------------------------------------------------------------------------- /src/mod/applications/mod_rss/conf/dialplan/rss.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/contrib/gsm-utils.cron.d: -------------------------------------------------------------------------------- 1 | # /etc/cron.d/gsm-utils: crontab fragment for gsm-utils 2 | 3 | */5 * * * * root if [ -x /usr/bin/gsmsmsrequeue ]; then /usr/bin/gsmsmsrequeue; fi 4 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/debian/gsm-utils.cron.d: -------------------------------------------------------------------------------- 1 | # /etc/cron.d/gsm-utils: crontab fragment for gsm-utils 2 | 3 | */5 * * * * root if [ -x /usr/bin/gsmsmsrequeue ]; then /usr/bin/gsmsmsrequeue; fi 4 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/gsmlib-1.10.debmg/debian/gsm-utils.prerm: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | deluser gsmsms || true 4 | delgroup gsmsms || true 5 | 6 | # Add the rest automatically.. 7 | #DEBHELPER# 8 | -------------------------------------------------------------------------------- /src/mod/languages/mod_java/src/org/freeswitch/HangupHook.java: -------------------------------------------------------------------------------- 1 | package org.freeswitch; 2 | 3 | public interface HangupHook 4 | { 5 | /** Called on hangup, usually in a different thread. */ 6 | public void onHangup(); 7 | } 8 | 9 | -------------------------------------------------------------------------------- /conf/vanilla/autoload_configs/skinny.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/configure.gnu: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | srcpath=$(dirname $0 2>/dev/null ) || srcpath="." 3 | $srcpath/configure "$@" --disable-cplusplus --disable-wininet-client --disable-libwww-client --disable-shared --with-pic --disable-curl-client 4 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/cpp/test/server_pstream.hpp: -------------------------------------------------------------------------------- 1 | #include "tools.hpp" 2 | 3 | class serverPstreamTestSuite : public testSuite { 4 | 5 | public: 6 | virtual std::string suiteName(); 7 | virtual void runtests(unsigned int const); 8 | }; 9 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/libctb-0.16/include/ctb-0.16/kbhit.h: -------------------------------------------------------------------------------- 1 | #ifndef LIBCTB_KBHIT_H_INCLUDED_ 2 | #define LIBCTB_KBHIT_H_INCLUDED_ 3 | 4 | namespace ctb { 5 | 6 | char GetKey(); 7 | 8 | } // namespace ctb 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/libctb-0.16/python/src/win32/wxctb.i: -------------------------------------------------------------------------------- 1 | // This file is created automatically, don't change it! 2 | %module wxctb 3 | typedef int size_t; 4 | %include timer.i 5 | %include serport.i 6 | %include ../kbhit.i 7 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_sofia/test/stir-shaken/pub.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEnqiYijyOLEo9hJ/x2oVYIQT12XL3 3 | YREF2XS+cWmabEtjJpfAPmS+1f+fg3APWD+owNyaDV54r3YTHqkvTK/5mA== 4 | -----END PUBLIC KEY----- 5 | -------------------------------------------------------------------------------- /conf/minimal/sip_profiles/external/stub.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/cpp/test/xml.hpp: -------------------------------------------------------------------------------- 1 | #include "tools.hpp" 2 | 3 | class xmlTestSuite : public testSuite { 4 | 5 | public: 6 | virtual std::string suiteName(); 7 | virtual void runtests(unsigned int const indentation); 8 | }; 9 | 10 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/binmode-rpc-kit/examples/good-3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 4 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/mod/applications/mod_db/conf/autoload_configs/db.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/alsa_nogsmlib_nocplusplus/mod_gsmopen/configs/asound.conf: -------------------------------------------------------------------------------- 1 | defaults.pcm.rate_converter "linear" 2 | #defaults.pcm.rate_converter "speexrate" 3 | #defaults.pcm.dmix.rate 16000 4 | #defaults.pcm.dsnoop.rate 16000 5 | 6 | 7 | -------------------------------------------------------------------------------- /w32/Setup/inno_setup/expsound.bat: -------------------------------------------------------------------------------- 1 | echo off 2 | rem example call: expsound {tmp} {app} freeswitch-sounds-en-us-callie-8000-1.0.11.tar.gz 3 | 4 | IF EXIST %1\%3 %1\7za x -r -y -o%1 %1\%3 5 | IF EXIST %1\%~n3 %1\7za x -r -y -o%2\sounds %1\%~n3 6 | -------------------------------------------------------------------------------- /fscomm/MakeVcProj.cmd: -------------------------------------------------------------------------------- 1 | \Qt\4.6.0\bin\qmake.exe -spec win32-msvc2008 -tp vc 2 | copy fscomm.vcproj FSComm.2008.vcproj /y 3 | echo "Manually copy/replace $QTDIR environment variable into project file" 4 | echo "Push top GUID block back current" 5 | pause -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/cpp/test/base64.hpp: -------------------------------------------------------------------------------- 1 | #include "tools.hpp" 2 | 3 | class base64TestSuite : public testSuite { 4 | 5 | public: 6 | virtual std::string suiteName(); 7 | virtual void runtests(unsigned int const indentation); 8 | }; 9 | 10 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/cpp/test/value.hpp: -------------------------------------------------------------------------------- 1 | #include "tools.hpp" 2 | 3 | class valueTestSuite : public testSuite { 4 | 5 | public: 6 | virtual std::string suiteName(); 7 | virtual void runtests(unsigned int const indentation); 8 | }; 9 | 10 | -------------------------------------------------------------------------------- /scripts/perl/POE-Filter-FSSocket/README: -------------------------------------------------------------------------------- 1 | A POE filter for FreeSWITCH (http://www.freeswitch.org) that parses event/log/etc... messages for you. You must ask for events in plain mode. 2 | 3 | perldoc POE::Filter::FSSocket for more info and an example. 4 | -------------------------------------------------------------------------------- /src/mod/applications/mod_limit/conf/autoload_configs/limit.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_sofia/test/test_sofia_funcs.sh: -------------------------------------------------------------------------------- 1 | #/bin/sh 2 | cd test 3 | pushd stir-shaken/www 4 | python -m SimpleHTTPServer 8080 & 5 | ppid=$! 6 | popd 7 | ./test_sofia_funcs $@ 8 | test=$? 9 | kill $ppid 10 | wait $ppid 11 | exit $test 12 | -------------------------------------------------------------------------------- /docker/examples/README.md: -------------------------------------------------------------------------------- 1 | ##### Dockerfile examples showing how to build FreeSWITCH without installing FreeSWITCH repo. 2 | 3 | [Debian 11](https://github.com/signalwire/freeswitch/blob/dockerfile/docker/examples/Debian11/Dockerfile "Debian 11") 4 | 5 | -------------------------------------------------------------------------------- /libs/apr/test/testapp.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main(int argc, const char * const * argv, const char * const *env) 5 | { 6 | fspr_app_initialize(&argc, &argv, &env); 7 | 8 | 9 | fspr_terminate(); 10 | } 11 | -------------------------------------------------------------------------------- /libs/libyuv/README.chromium: -------------------------------------------------------------------------------- 1 | Name: libyuv 2 | URL: http://code.google.com/p/libyuv/ 3 | Version: 1735 4 | License: BSD 5 | License File: LICENSE 6 | 7 | Description: 8 | libyuv is an open source project that includes YUV conversion and scaling functionality. 9 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/cpp/test/registry.hpp: -------------------------------------------------------------------------------- 1 | #include "tools.hpp" 2 | 3 | class registryTestSuite : public testSuite { 4 | 5 | public: 6 | virtual std::string suiteName(); 7 | virtual void runtests(unsigned int const indentation); 8 | }; 9 | 10 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/cpp/test/testclient.hpp: -------------------------------------------------------------------------------- 1 | #include "tools.hpp" 2 | 3 | class clientTestSuite : public testSuite { 4 | 5 | public: 6 | virtual std::string suiteName(); 7 | virtual void runtests(unsigned int const indentation); 8 | }; 9 | 10 | -------------------------------------------------------------------------------- /scripts/check-gitignore.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ## files we might want to ignore 4 | git ls-files -o --exclude-standard | sed -e "s:.:\/\\0:" 5 | 6 | ## files we are accidentally ignoring 7 | git ls-files -i --exclude-standard | sed -e "s:.:\!\/\\0:" 8 | 9 | -------------------------------------------------------------------------------- /src/mod/applications/mod_conference/TODO: -------------------------------------------------------------------------------- 1 | runtime in one file, header(with all structures), apps, api commands, utilities 2 | 3 | Currently mod_conference can compile with 'time make -j' in: 4 | real 0m9.709s 5 | user 0m9.040s 6 | sys 0m0.568s 7 | 8 | -------------------------------------------------------------------------------- /libs/srtp/build/config/ac_prog_gzip.m4: -------------------------------------------------------------------------------- 1 | AC_DEFUN([AC_PROG_GZIP],[ 2 | AC_CHECK_PROGS(gzip,[gzip],no) 3 | export gzip; 4 | if test $gzip = "no" ; 5 | then 6 | AC_MSG_ERROR([Unable to find the gzip application]); 7 | fi 8 | AC_SUBST(gzip) 9 | ]) 10 | -------------------------------------------------------------------------------- /libs/srtp/build/config/ac_prog_wget.m4: -------------------------------------------------------------------------------- 1 | AC_DEFUN([AC_PROG_WGET],[ 2 | AC_CHECK_PROGS(wget,[wget],no) 3 | export wget; 4 | if test $wget = "no" ; 5 | then 6 | AC_MSG_ERROR([Unable to find the wget application]); 7 | fi 8 | AC_SUBST(wget) 9 | ]) 10 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/expat/xmlwf/codepage.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd 3 | See the file copying.txt for copying permission. 4 | */ 5 | 6 | int codepageMap(int cp, int *map); 7 | int codepageConvert(int cp, const char *p); 8 | -------------------------------------------------------------------------------- /scripts/basic/hello.bas: -------------------------------------------------------------------------------- 1 | 2 | s$ = "hello " 3 | s$ = s$ + "world" 4 | 5 | FS_LOG "WARNING" s$ + "!" 6 | 7 | FS_EXECUTE "answer" 8 | FS_EXECUTE "sleep" "1000" 9 | FS_EXECUTE "playback" "misc/misc-cluecon_is_premier_conference.wav" 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/mod/applications/mod_cv/Makefile.hint: -------------------------------------------------------------------------------- 1 | LOCAL_LDFLAGS=-lopencv_core -lopencv_objdetect -lopencv_imgproc -lopencv_highgui -lopencv_legacy -lyuv 2 | LOCAL_CFLAGS=-I/usr/include/opencv 3 | 4 | 5 | BASE=../../../.. 6 | include $(BASE)/build/modmake.rules 7 | 8 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skinny/conf/autoload_configs/skinny.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /tests/unit/README: -------------------------------------------------------------------------------- 1 | FreeSWITCH unit tests should be kept as shallow unit tests and micro 2 | benchmarks testing functionality exposed through libfreeswitch. 3 | 4 | Requirements for a new unit tests: 5 | 6 | 1. Tests must use switch_test.h framework 7 | 8 | 9 | -------------------------------------------------------------------------------- /conf/curl/autoload_configs/zeroconf.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /conf/minimal/dialplan/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /conf/rayo/autoload_configs/presence_map.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /conf/testing/chatplan/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /libs/libnatpmp/natpmp.def: -------------------------------------------------------------------------------- 1 | LIBRARY 2 | ; libnatpmp library 3 | 4 | EXPORTS 5 | initnatpmp 6 | closenatpmp 7 | sendpublicaddressrequest 8 | sendnewportmappingrequest 9 | getnatpmprequesttimeout 10 | readnatpmpresponseorretry 11 | strnatpmperr 12 | -------------------------------------------------------------------------------- /libs/libteletone/build/config/ac_prog_gzip.m4: -------------------------------------------------------------------------------- 1 | AC_DEFUN([AC_PROG_GZIP],[ 2 | AC_CHECK_PROGS(gzip,[gzip],no) 3 | export gzip; 4 | if test $gzip = "no" ; 5 | then 6 | AC_MSG_ERROR([Unable to find the gzip application]); 7 | fi 8 | AC_SUBST(gzip) 9 | ]) 10 | -------------------------------------------------------------------------------- /libs/libteletone/build/config/ac_prog_wget.m4: -------------------------------------------------------------------------------- 1 | AC_DEFUN([AC_PROG_WGET],[ 2 | AC_CHECK_PROGS(wget,[wget],no) 3 | export wget; 4 | if test $wget = "no" ; 5 | then 6 | AC_MSG_ERROR([Unable to find the wget application]); 7 | fi 8 | AC_SUBST(wget) 9 | ]) 10 | -------------------------------------------------------------------------------- /scripts/lua/originate.lua: -------------------------------------------------------------------------------- 1 | -- Example Lua script to originate. luarun 2 | freeswitch.console_log("info", "Lua in da house!!!\n"); 3 | 4 | local session = freeswitch.Session("sofia/10.0.1.100/1001"); 5 | session:execute("playback", "/sr8k.wav"); 6 | session:hangup(); 7 | -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | /Makefile 2 | /Makefile.in 3 | /include/stamp-h1 4 | /include/switch_am_config.h 5 | /include/switch_private.h 6 | /include/switch_private.h.in 7 | /include/switch_swigable_cpp.h 8 | /include/switch_version.h 9 | /include/switch_version.h.in 10 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/README: -------------------------------------------------------------------------------- 1 | For Linux distros without gsmlib (eg: CentOS): 2 | 3 | In the directory gsmlib-1.10-patched-13ubuntu is the source for gsmlib 4 | as patched by Ubuntu for modern compilers: 5 | 6 | ./configure 7 | make 8 | make install 9 | -------------------------------------------------------------------------------- /conf/insideout/autoload_configs/zeroconf.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /conf/testing/autoload_configs/presence_map.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /conf/vanilla/autoload_configs/presence_map.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /conf/vanilla/autoload_configs/zeroconf.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /conf/vanilla/dialplan/skinny-patterns/20-Demo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/test/client_dummy.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #include "client.h" 4 | 5 | 6 | 7 | void 8 | test_client(void) { 9 | 10 | printf("Running dummy client test."); 11 | 12 | printf("\n"); 13 | printf("Client tests done.\n"); 14 | } 15 | -------------------------------------------------------------------------------- /scripts/perl/originate.pl: -------------------------------------------------------------------------------- 1 | # Example Perl script to originate. perlrun 2 | freeswitch::console_log("info", "Perl in da house!!!\n"); 3 | 4 | $session = new freeswitch::Session("sofia/10.0.1.100/1002") ; 5 | $session->execute("playback", "/sr8k.wav"); 6 | $session->hangup(); 7 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient00/skypenameA/index2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient00/skypenameA/index2.dat -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient00/skypenameB/index2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient00/skypenameB/index2.dat -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient01/skypenameA/index2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient01/skypenameA/index2.dat -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient01/skypenameB/index2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient01/skypenameB/index2.dat -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient01/skypenameC/index2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient01/skypenameC/index2.dat -------------------------------------------------------------------------------- /docker/base_image/sounds_version.txt: -------------------------------------------------------------------------------- 1 | music 1.0.52 2 | en-us-callie 1.0.51 3 | en-us-allison 1.0.0 4 | ru-RU-elena 1.0.51 5 | en-ca-june 1.0.51 6 | fr-ca-june 1.0.51 7 | pt-BR-karina 1.0.51 8 | sv-se-jakob 1.0.50 9 | zh-cn-sinmei 1.0.51 10 | zh-hk-sinmei 1.0.51 11 | 12 | -------------------------------------------------------------------------------- /libs/esl/perl/single_command.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | require ESL; 3 | 4 | my $command = shift; 5 | my $args = join(" ", @ARGV); 6 | 7 | my $con = new ESL::ESLconnection("127.0.0.1", "8021", "ClueCon"); 8 | my $e = $con->api($command, $args); 9 | print $e->getBody(); 10 | -------------------------------------------------------------------------------- /libs/srtp/update.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # update.sh 4 | # 5 | # update copyright dates in files 6 | 7 | a=`find . -name "*.[ch]"` 8 | for x in $a; do 9 | sed 's/(c) 2001-2005/(c) 2001-2006/' $x > $x.tmp; 10 | mv $x.tmp $x; 11 | done 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /scripts/perl/FreeSWITCH/Makefile.PL: -------------------------------------------------------------------------------- 1 | use ExtUtils::MakeMaker; 2 | require 5.008; 3 | WriteMakefile( 4 | NAME => 'FreeSWITCH::Client', 5 | VERSION_FROM => 'Client.pm', 6 | PREREQ_PM => { 7 | 'IO::Socket::INET' => 1.16, 8 | 'IO::Select' => 1.16, 9 | }, 10 | ); 11 | -------------------------------------------------------------------------------- /conf/vanilla/dialplan/skinny-patterns/90-External.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /libs/iksemel/iksemel.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: iksemel 7 | Description: XML parser library for Jabber 8 | Version: @VERSION@ 9 | Libs: -L${libdir} -liksemel 10 | Cflags: -I${includedir} 11 | -------------------------------------------------------------------------------- /libs/libyuv/codereview.settings: -------------------------------------------------------------------------------- 1 | # This file is used by git cl to get repository specific information. 2 | CODE_REVIEW_SERVER: codereview.chromium.org 3 | GERRIT_HOST: True 4 | PROJECT: libyuv 5 | TRY_ON_UPLOAD: False 6 | VIEW_VC: https://chromium.googlesource.com/libyuv/libyuv/+/ 7 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/lib/include/dumpvalue.h: -------------------------------------------------------------------------------- 1 | #ifndef DUMPVALUE_H_INCLUDED 2 | #define DUMPVALUE_H_INCLUDED 3 | 4 | struct _xmlrpc_value; 5 | 6 | void 7 | dumpValue(const char * const prefix, 8 | struct _xmlrpc_value * const valueP); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_srs/README.md: -------------------------------------------------------------------------------- 1 | # mod_srs 2 | 3 | mod_srs is hosted in a git repo as a standalone module . 4 | 5 | Talk to us if you have any questions: . 6 | 7 | Thank you using mod_srs. 8 | 9 | -------------------------------------------------------------------------------- /conf/rayo/autoload_configs/pre_load_modules.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /libs/libyuv/tools_libyuv/valgrind/memcheck/suppressions_mac.txt: -------------------------------------------------------------------------------- 1 | # This file is used in addition to the one already maintained in Chrome. 2 | # It acts as a place holder for future additions for this project. 3 | # It must exist for the Python wrapper script to work properly. 4 | 5 | 6 | -------------------------------------------------------------------------------- /libs/libyuv/tools_libyuv/valgrind/memcheck/suppressions_win32.txt: -------------------------------------------------------------------------------- 1 | # This file is used in addition to the one already maintained in Chrome. 2 | # It acts as a place holder for future additions for this project. 3 | # It must exist for the Python wrapper script to work properly. 4 | 5 | 6 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/test/data/sample_add_call.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | sample.add 4 | 5 | 5 6 | 7 7 | 8 | 9 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/binmode-rpc-kit/examples/good-6.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Copyright © 1995 J. Random Hacker 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /scripts/lua/directory.gram: -------------------------------------------------------------------------------- 1 | #JSGF V1.0; 2 | /** 3 | * JSGF Grammar for Directory 4 | */ 5 | 6 | grammar directory; 7 | 8 | = [ anthony ]; 9 | = [ michael ]; 10 | = [ brian ]; 11 | 12 | public = ; 13 | 14 | -------------------------------------------------------------------------------- /conf/testing/autoload_configs/pre_load_modules.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /conf/testing/dialplan/default/0007_pre_answer.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /conf/vanilla/autoload_configs/pre_load_modules.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skinny/conf/dialplan/skinny-patterns/20-Demo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- 1 | # This repository contains two commits with multiple authors. 2 | 3 | # By default, fsck will show errors for those commits. 4 | # Run the following command to ignore them: 5 | 6 | # git config --local include.path ../.gitconfig 7 | 8 | [fsck] 9 | multipleAuthors=ignore 10 | -------------------------------------------------------------------------------- /conf/vanilla/dialplan/default/pulver.com.noload: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /debian/freeswitch.prerm: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | case "$1" in 5 | remove|upgrade|deconfigure) 6 | ;; 7 | failed-upgrade) 8 | ;; 9 | *) 10 | echo "prerm called with unknown argument \`$1'" >&2 11 | exit 1 12 | ;; 13 | esac 14 | 15 | #DEBHELPER# 16 | exit 0 17 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_sofia/test/stir-shaken/priv.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN EC PRIVATE KEY----- 2 | MHcCAQEEIKigooZBuy0XvaeIEFPkuvOehEbhrqFIKdeBZAJaZIawoAoGCCqGSM49 3 | AwEHoUQDQgAEnqiYijyOLEo9hJ/x2oVYIQT12XL3YREF2XS+cWmabEtjJpfAPmS+ 4 | 1f+fg3APWD+owNyaDV54r3YTHqkvTK/5mA== 5 | -----END EC PRIVATE KEY----- 6 | -------------------------------------------------------------------------------- /conf/vanilla/dialplan/default/ideasip.com.noload: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/mod/asr_tts/mod_cepstral/WinReadme.txt: -------------------------------------------------------------------------------- 1 | The Cepstral SDK for Windows should be placed in c:\dev\cepstral 2 | ex. C:\dev\cepstral\sdk\include 3 | This SDK can be obtained from http://cepstral.com/ 4 | If you want a prebuilt version you may download one from http://files.freeswitch.org/windows/installer/ -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/win_iconv/iconv.h: -------------------------------------------------------------------------------- 1 | #include 2 | typedef void* iconv_t; 3 | iconv_t iconv_open(const char *tocode, const char *fromcode); 4 | int iconv_close(iconv_t cd); 5 | size_t iconv(iconv_t cd, const char **inbuf, size_t *inbytesleft, char **outbuf, size_t *outbytesleft); 6 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skinny/conf/dialplan/skinny-patterns/90-External.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /cc.sh: -------------------------------------------------------------------------------- 1 | cc=`cat cluecon.tmpl | sed 's/\\\\/\\\\\\\\/g' | awk '{printf "%s\\\\n", $0}' ` 2 | cc_s=`cat cluecon_small.tmpl | sed 's/\\\\/\\\\\\\\/g' | awk '{printf "%s\\\\n", $0}' ` 3 | 4 | cat < src/include/cc.h 5 | 6 | const char *cc = "$cc"; 7 | const char *cc_s = "$cc_s"; 8 | 9 | EOF 10 | 11 | -------------------------------------------------------------------------------- /conf/vanilla/autoload_configs/redis.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /libs/apr/build/pkg/pkginfo.in: -------------------------------------------------------------------------------- 1 | PKG="ASFapr-1" 2 | NAME="apr" 3 | ARCH="@target_cpu@" 4 | VERSION="@APR_DOTTED_VERSION@" 5 | CATEGORY="application" 6 | VENDOR="Apache Software Foundation" 7 | EMAIL="dev@apr.apache.org" 8 | PSTAMP="dev@apr.apache.org" 9 | BASEDIR="@prefix@" 10 | CLASSES="none" 11 | 12 | -------------------------------------------------------------------------------- /libs/libvpx/vpx/exports_dec: -------------------------------------------------------------------------------- 1 | text vpx_codec_dec_init_ver 2 | text vpx_codec_decode 3 | text vpx_codec_get_frame 4 | text vpx_codec_get_stream_info 5 | text vpx_codec_peek_stream_info 6 | text vpx_codec_register_put_frame_cb 7 | text vpx_codec_register_put_slice_cb 8 | text vpx_codec_set_frame_buffer_functions 9 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/win32/COPYING: -------------------------------------------------------------------------------- 1 | WARNING 2 | 3 | The files getopt.c and getopt.h in this subdirectory (win32) are 4 | not covered by the GNU LIBRARY GENERAL PUBLIC LICENSE as 5 | reproduced in ../COPYING. They carry their own license instead. 6 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/README: -------------------------------------------------------------------------------- 1 | Skypopen, Skype Endpoint and Trunk 2 | 3 | All documentation on compiling, using, configuring, 4 | tricks and tweaks, possible problems at: 5 | 6 | http://wiki.freeswitch.org/wiki/Mod_skypopen_Skype_Endpoint_and_Trunk 7 | 8 | mail to: < gmaruzz at gmail dot com > 9 | -------------------------------------------------------------------------------- /conf/testing/autoload_configs/acl.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /conf/vanilla/dialplan/default/sipbroker.com.noload: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/include/xmlrpc-c/base64_int.h: -------------------------------------------------------------------------------- 1 | #ifndef BASE64_INT_H_INCLUDED 2 | #define BASE64_INT_H_INCLUDED 3 | 4 | #include "xmlrpc-c/c_util.h" 5 | 6 | XMLRPC_DLLEXPORT 7 | void 8 | xmlrpc_base64Encode(const char * const chars, 9 | char * const base64); 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/abyss/src/socket_unix.h: -------------------------------------------------------------------------------- 1 | #ifndef SOCKET_UNIX_H_INCLUDED 2 | #define SOCKET_UNIX_H_INCLUDED 3 | 4 | #include 5 | 6 | #include 7 | 8 | void 9 | SocketUnixInit(const char ** const errorP); 10 | 11 | void 12 | SocketUnixTerm(void); 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/NEWS: -------------------------------------------------------------------------------- 1 | NEWS - 9.1.2000 2 | 3 | Version 1.0 - first release with RPM support and binary packages 4 | 5 | NEWS - 15.11.1999 6 | 7 | BETA version (details see ChangeLog) 8 | 9 | NEWS - 16.7.1999 10 | 11 | initial release 12 | -------------------------------------------------------------------------------- /conf/curl/autoload_configs/fifo.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /conf/testing/dialplan/default/0012_play_audio_local_stream.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /libs/esl/lua/single_command.lua: -------------------------------------------------------------------------------- 1 | #!/usr/local/bin/lua 2 | require("ESL") 3 | 4 | local command = arg[1]; 5 | table.remove(arg, 1); 6 | local args = table.concat(arg, " "); 7 | 8 | local con = ESL.ESLconnection("localhost", "8021", "ClueCon"); 9 | local e = con:api(command, args); 10 | print(e:getBody()); 11 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/double.h: -------------------------------------------------------------------------------- 1 | #ifndef DOUBLE_H_INCLUDED 2 | #define DOUBLE_H_INCLUDED 3 | 4 | #include "xmlrpc-c/util.h" 5 | 6 | void 7 | xmlrpc_formatFloat(xmlrpc_env * const envP, 8 | double const value, 9 | const char ** const formattedP); 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /scripts/debug_sofia.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | export SOFIA_DEBUG=9 4 | export NUA_DEBUG=9 5 | export NTA_DEBUG=9 6 | export NEA_DEBUG=9 7 | export TPORT_DEBUG=9 8 | export TPORT_LOG=1 9 | export TPORT_DUMP=tport_sip.log 10 | export SOA_DEBUG=9 11 | export IPTSEC_DEBUG=9 12 | export SU_DEBUG=9 13 | ./freeswitch 14 | -------------------------------------------------------------------------------- /conf/curl/autoload_configs/event_multicast.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /conf/insideout/autoload_configs/fifo.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /conf/testing/autoload_configs/hash.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /conf/vanilla/autoload_configs/hash.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /conf/vanilla/autoload_configs/memcache.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /conf/vanilla/dialplan/default/sipphone.com.noload: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /libs/esl/.gitignore: -------------------------------------------------------------------------------- 1 | eslmake.rules 2 | testserver_fork 3 | Makefile 4 | Makefile.in 5 | /src/include/esl_config_auto.h 6 | /src/include/stamp-h2 7 | !java/Makefile 8 | !lua/Makefile 9 | !managed/Makefile 10 | !python/Makefile 11 | !ruby/Makefile 12 | !tcl/Makefile 13 | java/classes/org/ 14 | java/esl.jar 15 | 16 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/test/http-req-simple.txt: -------------------------------------------------------------------------------- 1 | POST /cgi-bin/sample-cgi.cgi 1.0 2 | Host: localhost 3 | Content-Type: text/xml 4 | Content-Length: 141 5 | 6 | 7 | 8 | system.listMethods 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/mod/applications/mod_ladspa/docs/README: -------------------------------------------------------------------------------- 1 | mod_ladspa is a module that allow to use Linux Audio Developer's Simple Plugin API inside freeswitch in realtime. 2 | see http://wiki.freeswitch.org/wiki/Mod_ladspa for installation and configuration documentation. 3 | 4 | Please Note Currently this module only works on Linux. 5 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/README: -------------------------------------------------------------------------------- 1 | GSMopen, GSM Endpoint and Trunk 2 | 3 | All documentation on compiling, using, configuring, 4 | tricks and tweaks, possible problems at: 5 | 6 | http://wiki.freeswitch.org/wiki/Gsmopen 7 | 8 | Enjoy 9 | 10 | -giovanni 11 | 12 | 13 | < gmaruzz at gmail dot com > 14 | 15 | -------------------------------------------------------------------------------- /src/mod/event_handlers/mod_fail2ban/fail2ban.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /conf/insideout/autoload_configs/event_multicast.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /libs/apr/test/nw_misc.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include "testutil.h" 4 | 5 | void _NonAppStop( void ) 6 | { 7 | pressanykey(); 8 | } 9 | 10 | /* 11 | static void test_not_impl(CuTest *tc) 12 | { 13 | CuNotImpl(tc, "Test not implemented on this platform yet"); 14 | } 15 | */ 16 | 17 | -------------------------------------------------------------------------------- /src/mod/applications/mod_http_cache/conf/dialplan/http_cache.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/tests/runparser.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | errorexit() { 4 | echo $1 5 | exit 1 6 | } 7 | 8 | # run the test 9 | ./testparser > testparser.log 10 | 11 | # check if output differs from what it should be 12 | diff testparser.log testparser-output.txt 13 | -------------------------------------------------------------------------------- /conf/insideout/openzap.conf: -------------------------------------------------------------------------------- 1 | [span wanpipe] 2 | name => OpenZAP 3 | number => 1 4 | fxs-channel => 1:3-4 5 | 6 | [span wanpipe] 7 | fxo-channel => 1:1-2 8 | 9 | [span zt] 10 | name => OpenZAP 11 | number => 2 12 | fxs-channel => 1 13 | 14 | [span zt] 15 | name => OpenZAP 16 | number => 2 17 | fxo-channel => 3 18 | 19 | 20 | -------------------------------------------------------------------------------- /conf/sbc/dialplan/default/99999_enum.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /conf/testing/dialplan/default/0006_set_video_on_hold.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /conf/vanilla/dialplan/skinny-patterns/99-Default_Drop.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/mod/applications/mod_osp/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_osp 3 | 4 | mod_LTLIBRARIES = mod_osp.la 5 | mod_osp_la_SOURCES = mod_osp.c 6 | mod_osp_la_CFLAGS = $(AM_CFLAGS) 7 | mod_osp_la_LDFLAGS = -avoid-version -module -no-undefined -shared -losptk -lssl -lcrypto -lpthread -lm 8 | 9 | -------------------------------------------------------------------------------- /src/mod/applications/mod_redis/conf/autoload_configs/redis.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /libs/libteletone/acsite.m4: -------------------------------------------------------------------------------- 1 | m4_include([build/config/ax_compiler_vendor.m4]) 2 | m4_include([build/config/ax_cflags_warn_all_ansi.m4]) 3 | m4_include([build/config/ax_cc_maxopt.m4]) 4 | m4_include([build/config/ax_check_compiler_flags.m4]) 5 | m4_include([build/config/ac_gcc_archflag.m4]) 6 | m4_include([build/config/ac_gcc_x86_cpuid.m4]) 7 | -------------------------------------------------------------------------------- /libs/srtp/include/srtp2/meson.build: -------------------------------------------------------------------------------- 1 | # Copy public headers scattered across the source tree into a single directory 2 | # so that we can use it in declare_dependency() 3 | foreach h : public_headers 4 | configure_file(input: h, 5 | output: '@BASENAME@.h', 6 | copy: true) 7 | endforeach 8 | public_incs = include_directories('.') 9 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/abyss/src/token.h: -------------------------------------------------------------------------------- 1 | #ifndef ABYSS_TOKEN_H_INCLUDED 2 | #define ABYSS_TOKEN_H_INCLUDED 3 | 4 | void 5 | NextToken(const char ** const pP); 6 | 7 | char * 8 | GetToken(char ** const pP); 9 | 10 | void 11 | GetTokenConst(char ** const pP, 12 | const char ** const tokenP); 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/cpp/env_wrap.cpp: -------------------------------------------------------------------------------- 1 | #include "xmlrpc-c/util.h" 2 | 3 | #include "env_wrap.hpp" 4 | 5 | namespace xmlrpc_c { 6 | 7 | env_wrap::env_wrap() { 8 | xmlrpc_env_init(&this->env_c); 9 | } 10 | 11 | 12 | 13 | env_wrap::~env_wrap() { 14 | xmlrpc_env_clean(&this->env_c); 15 | } 16 | 17 | 18 | } // namespace 19 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/binmode-rpc-kit/oct2bin: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | # Turn C-style octal escapes into binary. 3 | # Call as "echo -n 'ab\0\001cd' | oct2bin > out.binmode". 4 | 5 | binmode STDOUT; 6 | 7 | while (<>) { 8 | s/\\(\d\d\d)/chr(oct($1))/ge; 9 | s/\\0/chr(0)/ge; 10 | s/\\\\/\\/g; 11 | print $_; 12 | } 13 | -------------------------------------------------------------------------------- /support-d/aliases.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO "aliases" VALUES(1,'noww','fsctl shutdown now','TONY'); 2 | INSERT INTO "aliases" VALUES(1,'sto','sofia global siptrace on','TONY'); 3 | INSERT INTO "aliases" VALUES(1,'stf','sofia global siptrace off','TONY'); 4 | INSERT INTO "aliases" VALUES(1,'now','hupall;;msleep 1000;;fsctl shutdown now','TONY'); 5 | -------------------------------------------------------------------------------- /conf/insideout/dialplan/default/99999_enum.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /conf/vanilla/autoload_configs/abstraction.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /libs/esl/ruby/single_command.rb: -------------------------------------------------------------------------------- 1 | #! /usr/bin/ruby 2 | require 'ESL' 3 | 4 | HOST = '127.0.0.1'.to_s 5 | PORT = '8021'.to_s 6 | PASSWORD = 'ClueCon'.to_s 7 | 8 | command = ARGV.join(" ") 9 | 10 | con = ESL::ESLconnection.new(HOST,PORT,PASSWORD) 11 | e = con.sendRecv('api ' + command) 12 | 13 | puts e.getBody 14 | 15 | -------------------------------------------------------------------------------- /libs/libnatpmp/declspec.h: -------------------------------------------------------------------------------- 1 | #ifndef __DECLSPEC_H__ 2 | #define __DECLSPEC_H__ 3 | 4 | #if defined(WIN32) && !defined(STATICLIB) 5 | #ifdef NATPMP_EXPORTS 6 | #define LIBSPEC __declspec(dllexport) 7 | #else 8 | #define LIBSPEC __declspec(dllimport) 9 | #endif 10 | #else 11 | #define LIBSPEC 12 | #endif 13 | 14 | #endif 15 | 16 | -------------------------------------------------------------------------------- /libs/libvpx/vpx/exports_enc: -------------------------------------------------------------------------------- 1 | text vpx_codec_enc_config_default 2 | text vpx_codec_enc_config_set 3 | text vpx_codec_enc_init_multi_ver 4 | text vpx_codec_enc_init_ver 5 | text vpx_codec_encode 6 | text vpx_codec_get_cx_data 7 | text vpx_codec_get_global_headers 8 | text vpx_codec_get_preview_frame 9 | text vpx_codec_set_cx_data_buf 10 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/test/data/req_out_of_order.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 2 6 | 7 | 8 | 2 9 | 10 | 11 | add 12 | 13 | -------------------------------------------------------------------------------- /scripts/javascript/aadir/README: -------------------------------------------------------------------------------- 1 | This directory contains a javascript auto attendant which queries 2 | FreeSWITCH for name / extension information rather than using 3 | hardcoded values. It requires a wave file which says: 4 | 5 | Please spell the name of the person using your telephone keypad 6 | last name first. Press 1 for Q or Z. 7 | -------------------------------------------------------------------------------- /src/mod/applications/mod_db/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_db 3 | 4 | mod_LTLIBRARIES = mod_db.la 5 | mod_db_la_SOURCES = mod_db.c 6 | mod_db_la_CFLAGS = $(AM_CFLAGS) 7 | mod_db_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_db_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/applications/mod_enum/conf/dialplan/99999_enum.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/mod/codecs/mod_b64/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_b64 3 | 4 | mod_LTLIBRARIES = mod_b64.la 5 | mod_b64_la_SOURCES = mod_b64.c 6 | mod_b64_la_CFLAGS = $(AM_CFLAGS) 7 | mod_b64_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_b64_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /libs/miniupnpc/declspec.h: -------------------------------------------------------------------------------- 1 | #ifndef __DECLSPEC_H__ 2 | #define __DECLSPEC_H__ 3 | 4 | #if defined(WIN32) && !defined(STATICLIB) 5 | #ifdef MINIUPNP_EXPORTS 6 | #define LIBSPEC __declspec(dllexport) 7 | #else 8 | #define LIBSPEC __declspec(dllimport) 9 | #endif 10 | #else 11 | #define LIBSPEC 12 | #endif 13 | 14 | #endif 15 | 16 | -------------------------------------------------------------------------------- /libs/srtp/libsrtp2.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: @PACKAGE_NAME@ 7 | Version: @PACKAGE_VERSION@ 8 | Description: Library for SRTP (Secure Realtime Transport Protocol) 9 | 10 | Libs: -L${libdir} -lsrtp2 11 | Libs.private: @LIBS@ 12 | Cflags: -I${includedir} 13 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/util/include/unistdx.h: -------------------------------------------------------------------------------- 1 | #ifndef UNISTDX_H_INCLUDED 2 | #define UNISTDX_H_INCLUDED 3 | 4 | /* Xmlrpc-c code #includes "unistdx.h" instead of because 5 | does not exist on WIN32. 6 | */ 7 | 8 | #ifndef WIN32 9 | # include 10 | #else 11 | 12 | #endif /* WIN32 */ 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/test/req_no_params.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | foo 9 | 10 | -------------------------------------------------------------------------------- /src/mod/applications/mod_hash/conf/autoload_configs/hash.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/mod/applications/mod_memcache/conf/autoload_configs/memcache.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_rtc/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_rtc 3 | 4 | mod_LTLIBRARIES = mod_rtc.la 5 | mod_rtc_la_SOURCES = mod_rtc.c 6 | mod_rtc_la_CFLAGS = $(AM_CFLAGS) 7 | mod_rtc_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_rtc_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/formats/mod_png/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_png 3 | 4 | mod_LTLIBRARIES = mod_png.la 5 | mod_png_la_SOURCES = mod_png.c 6 | mod_png_la_CFLAGS = $(AM_CFLAGS) 7 | mod_png_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_png_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/languages/mod_python/README.md: -------------------------------------------------------------------------------- 1 | ## WARNING: new default module is mod_python3 2 | 3 | `freeswitch-mod-python` debian package is NOT going to be installed by default. 4 | `freeswitch-mod-python3` will be installed instead. 5 | 6 | You should remove `freeswitch-mod-python3` package and install `freeswitch-mod-python` manually if you want. 7 | -------------------------------------------------------------------------------- /src/mod/languages/mod_python3/README.md: -------------------------------------------------------------------------------- 1 | ## WARNING: new default module is mod_python3 2 | 3 | `freeswitch-mod-python` debian package is NOT going to be installed by default. 4 | `freeswitch-mod-python3` will be installed instead. 5 | 6 | You should remove `freeswitch-mod-python3` package and install `freeswitch-mod-python` manually if you want. 7 | -------------------------------------------------------------------------------- /conf/testing/autoload_configs/sndfile.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /conf/testing/dialplan/default/0001_vmain.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /conf/vanilla/autoload_configs/sndfile.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/Windows/diffcfg.bat: -------------------------------------------------------------------------------- 1 | diff -us win32_config.h ..\include\xmlrpc-c\config.h > tempcfg.diff 2 | diff -us xmlrpc_win32_config.h ..\xmlrpc_config.h >> tempcfg.diff 3 | diff -us transport_config_win32.h ..\transport_config.h >> tempcfg.diff 4 | diff -us xmlrpc_win32_config.h ..\examples\config.h >> tempcfg.diff 5 | np tempcfg.diff 6 | 7 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/test/data/req_no_params.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | foo 9 | 10 | -------------------------------------------------------------------------------- /src/mod/applications/mod_esf/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_esf 3 | 4 | mod_LTLIBRARIES = mod_esf.la 5 | mod_esf_la_SOURCES = mod_esf.c 6 | mod_esf_la_CFLAGS = $(AM_CFLAGS) 7 | mod_esf_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_esf_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/applications/mod_fsv/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_fsv 3 | 4 | mod_LTLIBRARIES = mod_fsv.la 5 | mod_fsv_la_SOURCES = mod_fsv.c 6 | mod_fsv_la_CFLAGS = $(AM_CFLAGS) 7 | mod_fsv_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_fsv_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/applications/mod_lcr/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_lcr 3 | 4 | mod_LTLIBRARIES = mod_lcr.la 5 | mod_lcr_la_SOURCES = mod_lcr.c 6 | mod_lcr_la_CFLAGS = $(AM_CFLAGS) 7 | mod_lcr_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_lcr_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/applications/mod_rss/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_rss 3 | 4 | mod_LTLIBRARIES = mod_rss.la 5 | mod_rss_la_SOURCES = mod_rss.c 6 | mod_rss_la_CFLAGS = $(AM_CFLAGS) 7 | mod_rss_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_rss_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/applications/mod_sms/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_sms 3 | 4 | mod_LTLIBRARIES = mod_sms.la 5 | mod_sms_la_SOURCES = mod_sms.c 6 | mod_sms_la_CFLAGS = $(AM_CFLAGS) 7 | mod_sms_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_sms_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/applications/mod_spy/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_spy 3 | 4 | mod_LTLIBRARIES = mod_spy.la 5 | mod_spy_la_SOURCES = mod_spy.c 6 | mod_spy_la_CFLAGS = $(AM_CFLAGS) 7 | mod_spy_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_spy_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/applications/mod_vmd/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_vmd 3 | 4 | mod_LTLIBRARIES = mod_vmd.la 5 | mod_vmd_la_SOURCES = mod_vmd.c 6 | mod_vmd_la_CFLAGS = $(AM_CFLAGS) 7 | mod_vmd_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_vmd_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/codecs/mod_h26x/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_h26x 3 | 4 | mod_LTLIBRARIES = mod_h26x.la 5 | mod_h26x_la_SOURCES = mod_h26x.c 6 | mod_h26x_la_CFLAGS = $(AM_CFLAGS) 7 | mod_h26x_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_h26x_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/codecs/mod_mp4v/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_mp4v 3 | 4 | mod_LTLIBRARIES = mod_mp4v.la 5 | mod_mp4v_la_SOURCES = mod_mp4v.c 6 | mod_mp4v_la_CFLAGS = $(AM_CFLAGS) 7 | mod_mp4v_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_mp4v_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/FREEBSD_README.txt: -------------------------------------------------------------------------------- 1 | This patch (updated to be applied today) was sent via Jira by royj@yandex.ru, with Jira issue FS-4338. 2 | 3 | Apply in this way: 4 | # patch -p6 < FREEBSD_patch.diff 5 | 6 | I have not tested it, but it works for him. 7 | Please open another Jira issue if anything wrong. 8 | 9 | -giovanni 10 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skinny/conf/dialplan/skinny-patterns/99-Default_Drop.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /conf/curl/autoload_configs/rss.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /debian/gbp.conf: -------------------------------------------------------------------------------- 1 | # git-buildpackage 2 | [git-buildpackage] 3 | verbose=True 4 | ignore-branch=True 5 | ignore-new=True 6 | upstream-branch=master 7 | debian-branch=master 8 | upstream-tree=branch 9 | tag=False 10 | compression=xz 11 | compression-level=9ev 12 | builder=debuild --prepend-path=/usr/lib/ccache -eFS_* -eCCACHE_* -i\.git -I.git -Zxz -z9 13 | -------------------------------------------------------------------------------- /libs/esl/perl/dump_events.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | require ESL; 3 | 4 | my $command = shift; 5 | my $args = join(" ", @ARGV); 6 | 7 | my $con = new ESL::ESLconnection("localhost", "8021", "ClueCon"); 8 | $con->events("plain","all"); 9 | while ( $con->connected() ) { 10 | my $e = $con->recvEventTimed(0); 11 | print $e->serialize; 12 | } 13 | -------------------------------------------------------------------------------- /libs/libteletone/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.6) 2 | 3 | INCLUDE_DIRECTORIES(include/) 4 | 5 | SET ( teletone_SRCS src/libteletone.h src/libteletone_detect.c src/libteletone_detect.h src/libteletone_generate.c src/libteletone_generate.h) 6 | ADD_LIBRARY(teletone STATIC ${teletone_SRCS}) 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /libs/win32/libvpx/vpx_version.h: -------------------------------------------------------------------------------- 1 | // This file is generated. Do not edit. 2 | #define VERSION_MAJOR 1 3 | #define VERSION_MINOR 8 4 | #define VERSION_PATCH 1 5 | #define VERSION_EXTRA "" 6 | #define VERSION_PACKED ((VERSION_MAJOR<<16)|(VERSION_MINOR<<8)|(VERSION_PATCH)) 7 | #define VERSION_STRING_NOSP "v1.8.1" 8 | #define VERSION_STRING " v1.8.1" 9 | -------------------------------------------------------------------------------- /src/mod/applications/mod_bert/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_bert 3 | 4 | mod_LTLIBRARIES = mod_bert.la 5 | mod_bert_la_SOURCES = mod_bert.c 6 | mod_bert_la_CFLAGS = $(AM_CFLAGS) 7 | mod_bert_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_bert_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/applications/mod_fifo/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_fifo 3 | 4 | mod_LTLIBRARIES = mod_fifo.la 5 | mod_fifo_la_SOURCES = mod_fifo.c 6 | mod_fifo_la_CFLAGS = $(AM_CFLAGS) 7 | mod_fifo_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_fifo_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/applications/mod_lcr/conf/dialplan/lcr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/mod/applications/mod_skel/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_skel 3 | 4 | mod_LTLIBRARIES = mod_skel.la 5 | mod_skel_la_SOURCES = mod_skel.c 6 | mod_skel_la_CFLAGS = $(AM_CFLAGS) 7 | mod_skel_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_skel_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /conf/insideout/autoload_configs/rss.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /conf/vanilla/autoload_configs/rss.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /libs/libteletone/teletone.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | teletone_run 3 | teletone_mux_tones 4 | teletone_destroy_session 5 | teletone_init_session 6 | teletone_set_map 7 | teletone_set_tone 8 | teletone_goertzel_update 9 | teletone_dtmf_get 10 | teletone_dtmf_detect 11 | teletone_dtmf_detect_init 12 | teletone_multi_tone_detect 13 | teletone_multi_tone_init -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/binmode-rpc-kit/examples/good-2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | add 4 | 5 | 6 | 2 7 | 8 | 9 | 2 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/mod/applications/mod_abstraction/conf/autoload_configs/abstraction.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/debian/gsm-utils.dirs: -------------------------------------------------------------------------------- 1 | var/spool/sms/queue1 2 | var/spool/sms/queue2 3 | var/spool/sms/queue3 4 | var/spool/sms/sent1 5 | var/spool/sms/sent2 6 | var/spool/sms/sent3 7 | var/spool/sms/failed1 8 | var/spool/sms/failed2 9 | var/spool/sms/failed3 10 | var/spool/sms/tmp 11 | var/run/gsm-utils 12 | -------------------------------------------------------------------------------- /src/mod/loggers/mod_raven/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_raven 3 | 4 | mod_LTLIBRARIES = mod_raven.la 5 | mod_raven_la_SOURCES = mod_raven.c 6 | mod_raven_la_CFLAGS = $(AM_CFLAGS) 7 | mod_raven_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_raven_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/expat/xmlwf/xmlfile.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd 3 | See the file copying.txt for copying permission. 4 | */ 5 | 6 | #define XML_MAP_FILE 01 7 | #define XML_EXTERNAL_ENTITIES 02 8 | 9 | extern int XML_ProcessFile(XML_Parser parser, 10 | const XML_Char *filename, 11 | unsigned flags); 12 | -------------------------------------------------------------------------------- /src/mod/applications/mod_limit/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_limit 3 | 4 | mod_LTLIBRARIES = mod_limit.la 5 | mod_limit_la_SOURCES = mod_limit.c 6 | mod_limit_la_CFLAGS = $(AM_CFLAGS) 7 | mod_limit_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_limit_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/applications/mod_oreka/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_oreka 3 | 4 | mod_LTLIBRARIES = mod_oreka.la 5 | mod_oreka_la_SOURCES = mod_oreka.c 6 | mod_oreka_la_CFLAGS = $(AM_CFLAGS) 7 | mod_oreka_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_oreka_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/applications/mod_sonar/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_sonar 3 | 4 | mod_LTLIBRARIES = mod_sonar.la 5 | mod_sonar_la_SOURCES = mod_sonar.c 6 | mod_sonar_la_CFLAGS = $(AM_CFLAGS) 7 | mod_sonar_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_sonar_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/codecs/mod_theora/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_theora 3 | 4 | mod_LTLIBRARIES = mod_theora.la 5 | mod_theora_la_SOURCES = mod_theora.c 6 | mod_theora_la_CFLAGS = $(AM_CFLAGS) 7 | mod_theora_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_theora_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/languages/mod_perl/mod_perl_extra.h: -------------------------------------------------------------------------------- 1 | #ifndef MOD_PERL_EXTRA 2 | #define MOD_PERL_EXTRA 3 | SWITCH_BEGIN_EXTERN_C void mod_perl_conjure_event(PerlInterpreter * my_perl, switch_event_t *event, const char *name); 4 | void mod_perl_conjure_stream(PerlInterpreter * my_perl, switch_stream_handle_t *stream, const char *name); 5 | 6 | SWITCH_END_EXTERN_C 7 | #endif 8 | -------------------------------------------------------------------------------- /src/mod/loggers/mod_syslog/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_syslog 3 | 4 | mod_LTLIBRARIES = mod_syslog.la 5 | mod_syslog_la_SOURCES = mod_syslog.c 6 | mod_syslog_la_CFLAGS = $(AM_CFLAGS) 7 | mod_syslog_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_syslog_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/say/mod_say_de/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_say_de 3 | 4 | mod_LTLIBRARIES = mod_say_de.la 5 | mod_say_de_la_SOURCES = mod_say_de.c 6 | mod_say_de_la_CFLAGS = $(AM_CFLAGS) 7 | mod_say_de_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_say_de_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/say/mod_say_en/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_say_en 3 | 4 | mod_LTLIBRARIES = mod_say_en.la 5 | mod_say_en_la_SOURCES = mod_say_en.c 6 | mod_say_en_la_CFLAGS = $(AM_CFLAGS) 7 | mod_say_en_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_say_en_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/say/mod_say_es/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_say_es 3 | 4 | mod_LTLIBRARIES = mod_say_es.la 5 | mod_say_es_la_SOURCES = mod_say_es.c 6 | mod_say_es_la_CFLAGS = $(AM_CFLAGS) 7 | mod_say_es_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_say_es_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/say/mod_say_fa/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_say_fa 3 | 4 | mod_LTLIBRARIES = mod_say_fa.la 5 | mod_say_fa_la_SOURCES = mod_say_fa.c 6 | mod_say_fa_la_CFLAGS = $(AM_CFLAGS) 7 | mod_say_fa_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_say_fa_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/say/mod_say_fr/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_say_fr 3 | 4 | mod_LTLIBRARIES = mod_say_fr.la 5 | mod_say_fr_la_SOURCES = mod_say_fr.c 6 | mod_say_fr_la_CFLAGS = $(AM_CFLAGS) 7 | mod_say_fr_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_say_fr_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/say/mod_say_he/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_say_he 3 | 4 | mod_LTLIBRARIES = mod_say_he.la 5 | mod_say_he_la_SOURCES = mod_say_he.c 6 | mod_say_he_la_CFLAGS = $(AM_CFLAGS) 7 | mod_say_he_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_say_he_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/say/mod_say_hr/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_say_hr 3 | 4 | mod_LTLIBRARIES = mod_say_hr.la 5 | mod_say_hr_la_SOURCES = mod_say_hr.c 6 | mod_say_hr_la_CFLAGS = $(AM_CFLAGS) 7 | mod_say_hr_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_say_hr_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/say/mod_say_hu/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_say_hu 3 | 4 | mod_LTLIBRARIES = mod_say_hu.la 5 | mod_say_hu_la_SOURCES = mod_say_hu.c 6 | mod_say_hu_la_CFLAGS = $(AM_CFLAGS) 7 | mod_say_hu_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_say_hu_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/say/mod_say_it/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_say_it 3 | 4 | mod_LTLIBRARIES = mod_say_it.la 5 | mod_say_it_la_SOURCES = mod_say_it.c 6 | mod_say_it_la_CFLAGS = $(AM_CFLAGS) 7 | mod_say_it_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_say_it_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/say/mod_say_ja/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_say_ja 3 | 4 | mod_LTLIBRARIES = mod_say_ja.la 5 | mod_say_ja_la_SOURCES = mod_say_ja.c 6 | mod_say_ja_la_CFLAGS = $(AM_CFLAGS) 7 | mod_say_ja_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_say_ja_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/say/mod_say_nl/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_say_nl 3 | 4 | mod_LTLIBRARIES = mod_say_nl.la 5 | mod_say_nl_la_SOURCES = mod_say_nl.c 6 | mod_say_nl_la_CFLAGS = $(AM_CFLAGS) 7 | mod_say_nl_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_say_nl_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/say/mod_say_pl/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_say_pl 3 | 4 | mod_LTLIBRARIES = mod_say_pl.la 5 | mod_say_pl_la_SOURCES = mod_say_pl.c 6 | mod_say_pl_la_CFLAGS = $(AM_CFLAGS) 7 | mod_say_pl_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_say_pl_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/say/mod_say_pt/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_say_pt 3 | 4 | mod_LTLIBRARIES = mod_say_pt.la 5 | mod_say_pt_la_SOURCES = mod_say_pt.c 6 | mod_say_pt_la_CFLAGS = $(AM_CFLAGS) 7 | mod_say_pt_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_say_pt_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/say/mod_say_ru/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_say_ru 3 | 4 | mod_LTLIBRARIES = mod_say_ru.la 5 | mod_say_ru_la_SOURCES = mod_say_ru.c 6 | mod_say_ru_la_CFLAGS = $(AM_CFLAGS) 7 | mod_say_ru_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_say_ru_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/say/mod_say_sv/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_say_sv 3 | 4 | mod_LTLIBRARIES = mod_say_sv.la 5 | mod_say_sv_la_SOURCES = mod_say_sv.c 6 | mod_say_sv_la_CFLAGS = $(AM_CFLAGS) 7 | mod_say_sv_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_say_sv_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/say/mod_say_th/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_say_th 3 | 4 | mod_LTLIBRARIES = mod_say_th.la 5 | mod_say_th_la_SOURCES = mod_say_th.c 6 | mod_say_th_la_CFLAGS = $(AM_CFLAGS) 7 | mod_say_th_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_say_th_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/say/mod_say_zh/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_say_zh 3 | 4 | mod_LTLIBRARIES = mod_say_zh.la 5 | mod_say_zh_la_SOURCES = mod_say_zh.c 6 | mod_say_zh_la_CFLAGS = $(AM_CFLAGS) 7 | mod_say_zh_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_say_zh_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /conf/curl/autoload_configs/shout.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /conf/minimal/autoload_configs/event_socket.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /conf/minimal/vars.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /libs/esl/ruby/cflags.rb: -------------------------------------------------------------------------------- 1 | require 'rbconfig' 2 | 3 | cflags = if RUBY_VERSION =~ /1.9/ then 4 | "-I#{RbConfig::CONFIG['rubyhdrdir']} -I#{RbConfig::CONFIG['rubyhdrdir']}/#{RbConfig::CONFIG['arch']}" 5 | else 6 | "-I#{RbConfig::CONFIG["topdir"]} -I#{RbConfig::CONFIG['rubyhdrdir']} -I#{RbConfig::CONFIG['rubyhdrdir']}/#{RbConfig::CONFIG['arch']}" 7 | end 8 | puts cflags 9 | -------------------------------------------------------------------------------- /libs/iksemel/tools/perf.h: -------------------------------------------------------------------------------- 1 | /* iksemel (XML parser for Jabber) 2 | ** Copyright (C) 2000-2003 Gurer Ozen 3 | ** This code is free software; you can redistribute it and/or 4 | ** modify it under the terms of GNU Lesser General Public License. 5 | */ 6 | 7 | void t_reset (void); 8 | unsigned long t_elapsed (void); 9 | 10 | void m_trace (void); 11 | -------------------------------------------------------------------------------- /src/mod/applications/mod_mp4v2/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_mp4v2 3 | 4 | mod_LTLIBRARIES = mod_mp4v2.la 5 | mod_mp4v2_la_SOURCES = mod_mp4v2.c 6 | mod_mp4v2_la_CFLAGS = $(AM_CFLAGS) 7 | mod_mp4v2_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_mp4v2_la_LDFLAGS = -avoid-version -module -no-undefined -shared -lmp4v2 9 | -------------------------------------------------------------------------------- /src/mod/applications/mod_random/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_random 3 | 4 | mod_LTLIBRARIES = mod_random.la 5 | mod_random_la_SOURCES = mod_random.c 6 | mod_random_la_CFLAGS = $(AM_CFLAGS) 7 | mod_random_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_random_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/languages/mod_basic/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_basic 3 | 4 | mod_LTLIBRARIES = mod_basic.la 5 | mod_basic_la_SOURCES = mod_basic.c my_basic.c 6 | mod_basic_la_CFLAGS = $(AM_CFLAGS) 7 | mod_basic_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_basic_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /conf/insideout/autoload_configs/shout.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /conf/testing/autoload_configs/shout.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /conf/vanilla/autoload_configs/shout.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /fscomm/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.o 3 | *.so 4 | *.lo 5 | *.a 6 | *.la 7 | .libs 8 | .deps 9 | .\#* 10 | \#* 11 | /Debug/ 12 | /Release/ 13 | /All/ 14 | /bin/ 15 | *.user 16 | *.suo 17 | *.ncb 18 | *.pdb 19 | *.map 20 | *.lib 21 | *.obj 22 | *.idb 23 | *.res 24 | *.exp 25 | *.exe 26 | *.manifest 27 | *.dep 28 | *.dll 29 | Makefile 30 | fscomm 31 | fscomm.exe 32 | fscomm.app 33 | -------------------------------------------------------------------------------- /libs/libscgi/perl/testserver.pl: -------------------------------------------------------------------------------- 1 | use FSSCGI; 2 | 3 | 4 | my $handle = new FSSCGI::SCGIhandle(); 5 | 6 | if ($handle->bind("127.0.0.1", 7777)) { 7 | 8 | while($handle->accept()) { 9 | print "REQ: " . $handle->getBody(). "\n\n"; 10 | $handle->respond("W00t!!!!!!\n"); 11 | } 12 | 13 | print "DONE\n"; 14 | 15 | } else { 16 | print "FAIL\n"; 17 | } 18 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/include/xmlrpc-c/sleep_int.h: -------------------------------------------------------------------------------- 1 | #ifndef SLEEP_INT_H_INCLUDED 2 | #define SLEEP_INT_H_INCLUDED 3 | 4 | #include "xmlrpc-c/c_util.h" 5 | 6 | #ifdef __cplusplus 7 | extern "C" { 8 | #endif 9 | 10 | XMLRPC_DLLEXPORT 11 | void 12 | xmlrpc_millisecond_sleep(unsigned int const milliseconds); 13 | 14 | #ifdef __cplusplus 15 | } 16 | #endif 17 | 18 | #endif 19 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/parse_datetime.h: -------------------------------------------------------------------------------- 1 | #ifndef PARSE_DATETIME_H_INCLUDED 2 | #define PARSE_DATETIME_H_INCLUDED 3 | 4 | #include "xmlrpc-c/util.h" 5 | #include "xmlrpc-c/base.h" 6 | 7 | void 8 | xmlrpc_parseDatetime(xmlrpc_env * const envP, 9 | const char * const str, 10 | xmlrpc_value ** const valuePP); 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /src/mod/applications/mod_fsk/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_fsk 3 | 4 | mod_LTLIBRARIES = mod_fsk.la 5 | mod_fsk_la_SOURCES = mod_fsk.c fsk.c uart.c fsk_callerid.c 6 | mod_fsk_la_CFLAGS = $(AM_CFLAGS) 7 | mod_fsk_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_fsk_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/applications/mod_mp4/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_mp4 3 | 4 | mod_LTLIBRARIES = mod_mp4.la 5 | mod_mp4_la_SOURCES = mod_mp4.cpp mp4_helper.cpp 6 | mod_mp4_la_CFLAGS = $(AM_CFLAGS) 7 | mod_mp4_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_mp4_la_LDFLAGS = -avoid-version -module -no-undefined -shared -lmp4v2 9 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_unicall/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_unicall 3 | 4 | mod_LTLIBRARIES = mod_unicall.la 5 | mod_unicall_la_SOURCES = mod_unicall.c 6 | mod_unicall_la_CFLAGS = $(AM_CFLAGS) 7 | mod_unicall_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_unicall_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/event_handlers/mod_smpp/TODO: -------------------------------------------------------------------------------- 1 | TODO: 2 | 1. add more encoding options 3 | 2. Improve partial read and write support 4 | 3. Add storage options, and registration delivery checks. 5 | 4. SSL connection support 6 | 5. SMPP 5.0 support 7 | 6. async message support 8 | 7. Add support for configuring chatplan profile for inbound messages from a gateway 9 | 8. ... ? 10 | -------------------------------------------------------------------------------- /src/mod/loggers/mod_console/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_console 3 | 4 | mod_LTLIBRARIES = mod_console.la 5 | mod_console_la_SOURCES = mod_console.c 6 | mod_console_la_CFLAGS = $(AM_CFLAGS) 7 | mod_console_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_console_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/loggers/mod_logfile/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_logfile 3 | 4 | mod_LTLIBRARIES = mod_logfile.la 5 | mod_logfile_la_SOURCES = mod_logfile.c 6 | mod_logfile_la_CFLAGS = $(AM_CFLAGS) 7 | mod_logfile_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_logfile_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/timers/mod_timerfd/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_timerfd 3 | 4 | mod_LTLIBRARIES = mod_timerfd.la 5 | mod_timerfd_la_SOURCES = mod_timerfd.c 6 | mod_timerfd_la_CFLAGS = $(AM_CFLAGS) 7 | mod_timerfd_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_timerfd_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /conf/curl/autoload_configs/event_socket.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /conf/insideout/lang/de/de.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /conf/insideout/lang/fr/fr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /conf/sbc/autoload_configs/event_socket.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /libs/apr/apr.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | APR_MAJOR_VERSION=@APR_MAJOR_VERSION@ 5 | includedir=@includedir@ 6 | 7 | Name: APR 8 | Description: The Apache Portable Runtime library 9 | Version: @APR_DOTTED_VERSION@ 10 | Libs: -L${libdir} -l@APR_LIBNAME@ @EXTRA_LIBS@ 11 | Cflags: @EXTRA_CPPFLAGS@ @EXTRA_CFLAGS@ -I${includedir} 12 | -------------------------------------------------------------------------------- /libs/libyuv/util/Makefile: -------------------------------------------------------------------------------- 1 | psnr: psnr.cc ssim.cc psnr_main.cc 2 | ifeq ($(CXX),icl) 3 | $(CXX) /arch:SSE2 /Ox /openmp psnr.cc ssim.cc psnr_main.cc 4 | else 5 | $(CXX) -msse2 -O3 -fopenmp -static -o psnr psnr.cc ssim.cc psnr_main.cc -Wl,--strip-all 6 | endif 7 | 8 | # for MacOS 9 | # /usr/local/bin/g++-7 -msse2 -O3 -fopenmp -Bstatic -o psnr psnr.cc ssim.cc psnr_main.cc 10 | -------------------------------------------------------------------------------- /src/mod/applications/mod_distributor/conf/dialplan/distributor.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/mod/applications/mod_dptools/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_dptools 3 | 4 | mod_LTLIBRARIES = mod_dptools.la 5 | mod_dptools_la_SOURCES = mod_dptools.c 6 | mod_dptools_la_CFLAGS = $(AM_CFLAGS) 7 | mod_dptools_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_dptools_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/applications/mod_ladspa/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/modmake.rulesam 2 | MODNAME=mod_ladspa 3 | 4 | mod_LTLIBRARIES = mod_ladspa.la 5 | mod_ladspa_la_SOURCES = mod_ladspa.c load.c 6 | mod_ladspa_la_CFLAGS = $(AM_CFLAGS) 7 | mod_ladspa_la_LIBADD = $(switch_builddir)/libfreeswitch.la 8 | mod_ladspa_la_LDFLAGS = -avoid-version -module -no-undefined -shared 9 | -------------------------------------------------------------------------------- /src/mod/applications/mod_rss/conf/autoload_configs/rss.conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/gsmlib-1.10.debmg/debian/gsm-utils.dirs: -------------------------------------------------------------------------------- 1 | var/spool/sms/queue1 2 | var/spool/sms/queue2 3 | var/spool/sms/queue3 4 | var/spool/sms/sent1 5 | var/spool/sms/sent2 6 | var/spool/sms/sent3 7 | var/spool/sms/failed1 8 | var/spool/sms/failed2 9 | var/spool/sms/failed3 10 | var/spool/sms/tmp 11 | var/run/gsm-utils 12 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/win_iconv/mlang.def: -------------------------------------------------------------------------------- 1 | LIBRARY MLANG.DLL 2 | EXPORTS 3 | ConvertINetMultiByteToUnicode@24 4 | ;; ConvertINetReset (not documented) 5 | ConvertINetString@28 6 | ConvertINetUnicodeToMultiByte@24 7 | IsConvertINetStringAvailable@8 8 | LcidToRfc1766A@12 9 | LcidToRfc1766W@12 10 | Rfc1766ToLcidA@8 11 | Rfc1766ToLcidW@8 12 | --------------------------------------------------------------------------------