├── .DS_Store ├── APIcommands └── README.md ├── Auth ├── README.md ├── directory │ └── default.xml └── sip_profiles │ ├── external.xml │ └── internal.xml ├── Lua ├── README.md ├── lua_autoload │ ├── arguments_pass.lua │ ├── autoload_configs │ │ └── lua.conf.xml │ └── helloworld.lua └── lua_dialplan │ ├── dialplan │ ├── lua_session_answer_prompt_hangup.lua │ ├── lua_session_leg_bridge.lua │ └── public.xml │ └── lua_autoattendant.lua ├── Media_handling ├── README.md ├── audio_codecs.md └── video_codecs.md ├── README.md ├── codecs.txt ├── dialplan_authcheck.xml ├── dialplan_common ├── dialplan_Securecall_musiconhold.xml ├── dialplan_bridge_or_voicemail.xml ├── dialplan_conf_with_user.xml ├── dialplan_debugcall.xml ├── dialplan_delay_echo.xml ├── dialplan_earlymedia.xml ├── dialplan_eavesdrop.xml ├── dialplan_groupconf_bridge.xml ├── dialplan_groupdial.xml ├── dialplan_park_unpark.xml ├── dialplan_playback_music.xml ├── dialplan_postanswer_ringtone.xml ├── dialplan_redial.xml ├── dialplan_ringready_playback.xml ├── dialplan_transfer_default.xml ├── dialplan_unloop.xml ├── dialplan_videoplayback.xml ├── dialplan_videorecord.xml ├── readme.md └── tone_detect.xml ├── dialplan_transfer_extension.xml ├── gateways └── README.md ├── ivr ├── README.md ├── demo_ivr.xml └── dialplan_IVR.xml ├── pbx_configurations ├── README.md ├── dialplan │ ├── README.md │ ├── deafult.xml │ └── public.xml ├── directory │ └── default.xml ├── freeswitch.xml ├── sip_profiles │ ├── README.md │ ├── external.xml │ ├── external │ │ └── gw-prod.xml │ └── internal.xml └── vars.xml ├── playback └── README.md ├── presence └── README.md ├── quickstart ├── README.md ├── freeswitch_simple.xml └── freswitch.xml ├── rust_rsip ├── FILE_STRUCTURE.md ├── FREESWITCH_INTEGRATION.md ├── QUICK_START.md ├── README.md └── RSIP_WRAPPER_GUIDE.md ├── screenshots ├── bootstarp_freeswitch.png ├── configure_freeswitch.png ├── make_freeswitch.png ├── make_install_freeswitch.png └── run_freeswitch.png ├── secure_sip_tls_srtp ├── README.md ├── dialplan │ └── default.xml ├── directory │ ├── deafult.xml │ └── default │ │ ├── 7777777777.xml │ │ └── altanai.xml ├── sip_profiles │ ├── external.xml │ └── internal.xml └── vars.xml ├── video_mcu_conference ├── 5_party_webrtc_MCU.txt ├── Q850_cause_88_INCOMPATIBLE_DESTINATION.txt ├── README.md ├── autoload_configs │ └── conference.conf.xml ├── dialplan │ └── public.xml ├── freeswitch_logs_jssip_p2p_call.txt └── session_interval_too_small.txt └── voip_appserver └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/.DS_Store -------------------------------------------------------------------------------- /APIcommands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/APIcommands/README.md -------------------------------------------------------------------------------- /Auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/Auth/README.md -------------------------------------------------------------------------------- /Auth/directory/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/Auth/directory/default.xml -------------------------------------------------------------------------------- /Auth/sip_profiles/external.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/Auth/sip_profiles/external.xml -------------------------------------------------------------------------------- /Auth/sip_profiles/internal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/Auth/sip_profiles/internal.xml -------------------------------------------------------------------------------- /Lua/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/Lua/README.md -------------------------------------------------------------------------------- /Lua/lua_autoload/arguments_pass.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/Lua/lua_autoload/arguments_pass.lua -------------------------------------------------------------------------------- /Lua/lua_autoload/autoload_configs/lua.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/Lua/lua_autoload/autoload_configs/lua.conf.xml -------------------------------------------------------------------------------- /Lua/lua_autoload/helloworld.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/Lua/lua_autoload/helloworld.lua -------------------------------------------------------------------------------- /Lua/lua_dialplan/dialplan/lua_session_answer_prompt_hangup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/Lua/lua_dialplan/dialplan/lua_session_answer_prompt_hangup.lua -------------------------------------------------------------------------------- /Lua/lua_dialplan/dialplan/lua_session_leg_bridge.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/Lua/lua_dialplan/dialplan/lua_session_leg_bridge.lua -------------------------------------------------------------------------------- /Lua/lua_dialplan/dialplan/public.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/Lua/lua_dialplan/dialplan/public.xml -------------------------------------------------------------------------------- /Lua/lua_dialplan/lua_autoattendant.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/Lua/lua_dialplan/lua_autoattendant.lua -------------------------------------------------------------------------------- /Media_handling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/Media_handling/README.md -------------------------------------------------------------------------------- /Media_handling/audio_codecs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/Media_handling/audio_codecs.md -------------------------------------------------------------------------------- /Media_handling/video_codecs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/Media_handling/video_codecs.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/README.md -------------------------------------------------------------------------------- /codecs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/codecs.txt -------------------------------------------------------------------------------- /dialplan_authcheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/dialplan_authcheck.xml -------------------------------------------------------------------------------- /dialplan_common/dialplan_Securecall_musiconhold.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/dialplan_common/dialplan_Securecall_musiconhold.xml -------------------------------------------------------------------------------- /dialplan_common/dialplan_bridge_or_voicemail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/dialplan_common/dialplan_bridge_or_voicemail.xml -------------------------------------------------------------------------------- /dialplan_common/dialplan_conf_with_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/dialplan_common/dialplan_conf_with_user.xml -------------------------------------------------------------------------------- /dialplan_common/dialplan_debugcall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/dialplan_common/dialplan_debugcall.xml -------------------------------------------------------------------------------- /dialplan_common/dialplan_delay_echo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/dialplan_common/dialplan_delay_echo.xml -------------------------------------------------------------------------------- /dialplan_common/dialplan_earlymedia.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/dialplan_common/dialplan_earlymedia.xml -------------------------------------------------------------------------------- /dialplan_common/dialplan_eavesdrop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/dialplan_common/dialplan_eavesdrop.xml -------------------------------------------------------------------------------- /dialplan_common/dialplan_groupconf_bridge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/dialplan_common/dialplan_groupconf_bridge.xml -------------------------------------------------------------------------------- /dialplan_common/dialplan_groupdial.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/dialplan_common/dialplan_groupdial.xml -------------------------------------------------------------------------------- /dialplan_common/dialplan_park_unpark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/dialplan_common/dialplan_park_unpark.xml -------------------------------------------------------------------------------- /dialplan_common/dialplan_playback_music.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/dialplan_common/dialplan_playback_music.xml -------------------------------------------------------------------------------- /dialplan_common/dialplan_postanswer_ringtone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/dialplan_common/dialplan_postanswer_ringtone.xml -------------------------------------------------------------------------------- /dialplan_common/dialplan_redial.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/dialplan_common/dialplan_redial.xml -------------------------------------------------------------------------------- /dialplan_common/dialplan_ringready_playback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/dialplan_common/dialplan_ringready_playback.xml -------------------------------------------------------------------------------- /dialplan_common/dialplan_transfer_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/dialplan_common/dialplan_transfer_default.xml -------------------------------------------------------------------------------- /dialplan_common/dialplan_unloop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/dialplan_common/dialplan_unloop.xml -------------------------------------------------------------------------------- /dialplan_common/dialplan_videoplayback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/dialplan_common/dialplan_videoplayback.xml -------------------------------------------------------------------------------- /dialplan_common/dialplan_videorecord.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/dialplan_common/dialplan_videorecord.xml -------------------------------------------------------------------------------- /dialplan_common/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/dialplan_common/readme.md -------------------------------------------------------------------------------- /dialplan_common/tone_detect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/dialplan_common/tone_detect.xml -------------------------------------------------------------------------------- /dialplan_transfer_extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/dialplan_transfer_extension.xml -------------------------------------------------------------------------------- /gateways/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/gateways/README.md -------------------------------------------------------------------------------- /ivr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/ivr/README.md -------------------------------------------------------------------------------- /ivr/demo_ivr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/ivr/demo_ivr.xml -------------------------------------------------------------------------------- /ivr/dialplan_IVR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/ivr/dialplan_IVR.xml -------------------------------------------------------------------------------- /pbx_configurations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/pbx_configurations/README.md -------------------------------------------------------------------------------- /pbx_configurations/dialplan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/pbx_configurations/dialplan/README.md -------------------------------------------------------------------------------- /pbx_configurations/dialplan/deafult.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/pbx_configurations/dialplan/deafult.xml -------------------------------------------------------------------------------- /pbx_configurations/dialplan/public.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/pbx_configurations/dialplan/public.xml -------------------------------------------------------------------------------- /pbx_configurations/directory/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/pbx_configurations/directory/default.xml -------------------------------------------------------------------------------- /pbx_configurations/freeswitch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/pbx_configurations/freeswitch.xml -------------------------------------------------------------------------------- /pbx_configurations/sip_profiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/pbx_configurations/sip_profiles/README.md -------------------------------------------------------------------------------- /pbx_configurations/sip_profiles/external.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/pbx_configurations/sip_profiles/external.xml -------------------------------------------------------------------------------- /pbx_configurations/sip_profiles/external/gw-prod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/pbx_configurations/sip_profiles/external/gw-prod.xml -------------------------------------------------------------------------------- /pbx_configurations/sip_profiles/internal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/pbx_configurations/sip_profiles/internal.xml -------------------------------------------------------------------------------- /pbx_configurations/vars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/pbx_configurations/vars.xml -------------------------------------------------------------------------------- /playback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/playback/README.md -------------------------------------------------------------------------------- /presence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/presence/README.md -------------------------------------------------------------------------------- /quickstart/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /quickstart/freeswitch_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/quickstart/freeswitch_simple.xml -------------------------------------------------------------------------------- /quickstart/freswitch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/quickstart/freswitch.xml -------------------------------------------------------------------------------- /rust_rsip/FILE_STRUCTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/rust_rsip/FILE_STRUCTURE.md -------------------------------------------------------------------------------- /rust_rsip/FREESWITCH_INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/rust_rsip/FREESWITCH_INTEGRATION.md -------------------------------------------------------------------------------- /rust_rsip/QUICK_START.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/rust_rsip/QUICK_START.md -------------------------------------------------------------------------------- /rust_rsip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/rust_rsip/README.md -------------------------------------------------------------------------------- /rust_rsip/RSIP_WRAPPER_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/rust_rsip/RSIP_WRAPPER_GUIDE.md -------------------------------------------------------------------------------- /screenshots/bootstarp_freeswitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/screenshots/bootstarp_freeswitch.png -------------------------------------------------------------------------------- /screenshots/configure_freeswitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/screenshots/configure_freeswitch.png -------------------------------------------------------------------------------- /screenshots/make_freeswitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/screenshots/make_freeswitch.png -------------------------------------------------------------------------------- /screenshots/make_install_freeswitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/screenshots/make_install_freeswitch.png -------------------------------------------------------------------------------- /screenshots/run_freeswitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/screenshots/run_freeswitch.png -------------------------------------------------------------------------------- /secure_sip_tls_srtp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/secure_sip_tls_srtp/README.md -------------------------------------------------------------------------------- /secure_sip_tls_srtp/dialplan/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/secure_sip_tls_srtp/dialplan/default.xml -------------------------------------------------------------------------------- /secure_sip_tls_srtp/directory/deafult.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/secure_sip_tls_srtp/directory/deafult.xml -------------------------------------------------------------------------------- /secure_sip_tls_srtp/directory/default/7777777777.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/secure_sip_tls_srtp/directory/default/7777777777.xml -------------------------------------------------------------------------------- /secure_sip_tls_srtp/directory/default/altanai.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/secure_sip_tls_srtp/directory/default/altanai.xml -------------------------------------------------------------------------------- /secure_sip_tls_srtp/sip_profiles/external.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/secure_sip_tls_srtp/sip_profiles/external.xml -------------------------------------------------------------------------------- /secure_sip_tls_srtp/sip_profiles/internal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/secure_sip_tls_srtp/sip_profiles/internal.xml -------------------------------------------------------------------------------- /secure_sip_tls_srtp/vars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/secure_sip_tls_srtp/vars.xml -------------------------------------------------------------------------------- /video_mcu_conference/5_party_webrtc_MCU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/video_mcu_conference/5_party_webrtc_MCU.txt -------------------------------------------------------------------------------- /video_mcu_conference/Q850_cause_88_INCOMPATIBLE_DESTINATION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/video_mcu_conference/Q850_cause_88_INCOMPATIBLE_DESTINATION.txt -------------------------------------------------------------------------------- /video_mcu_conference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/video_mcu_conference/README.md -------------------------------------------------------------------------------- /video_mcu_conference/autoload_configs/conference.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/video_mcu_conference/autoload_configs/conference.conf.xml -------------------------------------------------------------------------------- /video_mcu_conference/dialplan/public.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/video_mcu_conference/dialplan/public.xml -------------------------------------------------------------------------------- /video_mcu_conference/freeswitch_logs_jssip_p2p_call.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/video_mcu_conference/freeswitch_logs_jssip_p2p_call.txt -------------------------------------------------------------------------------- /video_mcu_conference/session_interval_too_small.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/video_mcu_conference/session_interval_too_small.txt -------------------------------------------------------------------------------- /voip_appserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altanai/freeswitchexamples/HEAD/voip_appserver/README.md --------------------------------------------------------------------------------