freeswitch/src
Anthony Minessale d3e320ef56 FS-11346: [core] add api to pass pre-parsed values instead of dial strings to switch_ivr_originate
SWITCH_DECLARE(switch_status_t) switch_dial_handle_create(switch_dial_handle_t **handle);
SWITCH_DECLARE(void) switch_dial_handle_destroy(switch_dial_handle_t **handle);
SWITCH_DECLARE(void) switch_dial_handle_add_leg_list(switch_dial_handle_t *handle, switch_dial_leg_list_t **leg_listP);
SWITCH_DECLARE(void) switch_dial_leg_list_add_leg(switch_dial_leg_list_t *parent, const char *dial_string, switch_dial_leg_t **legP);
SWITCH_DECLARE(void) switch_dial_handle_add_global_var(switch_dial_handle_t *handle, const char *var, const char *val);
SWITCH_DECLARE(void) switch_dial_handle_add_global_var_printf(switch_dial_handle_t *handle, const char *var, const char *fmt, ...);
SWITCH_DECLARE(switch_status_t) switch_dial_handle_add_leg_var(switch_dial_leg_t *leg, const char *var, const char *val);
SWITCH_DECLARE(switch_status_t) switch_dial_handle_add_leg_var_printf(switch_dial_leg_t *leg, const char *var, const char *fmt, ...);
SWITCH_DECLARE(int) switch_dial_handle_get_peers(switch_dial_handle_t *handle, int idx, char **array, int max);
SWITCH_DECLARE(int) switch_dial_handle_get_vars(switch_dial_handle_t *handle, int idx, switch_event_t **array, int max);
SWITCH_DECLARE(switch_event_t *) switch_dial_handle_get_global_vars(switch_dial_handle_t *handle);
SWITCH_DECLARE(switch_event_t *) switch_dial_leg_get_vars(switch_dial_leg_t *leg);
SWITCH_DECLARE(int) switch_dial_handle_get_total(switch_dial_handle_t *handle);
SWITCH_DECLARE(void) switch_ivr_orig_and_bridge(switch_core_session_t *session, const char *data, switch_dial_handle_t *dh);

add switch_dial_handle_t *dh to end of args for switch_ivr_originate
2018-08-22 18:20:13 +00:00
..
include FS-11346: [core] add api to pass pre-parsed values instead of dial strings to switch_ivr_originate 2018-08-22 18:20:13 +00:00
mod FS-11346: [core] add api to pass pre-parsed values instead of dial strings to switch_ivr_originate 2018-08-22 18:20:13 +00:00
.gitignore
CMakeLists.txt
Makefile.am
cJSON.c
cJSON_Utils.c
fs_encode.c
g711.c
inet_pton.c
switch.c
switch_apr.c FS-10876: [Build-System] Fix build in Visual Studio 2017 and Windows SDK 10. 2018-01-10 23:30:24 +03:00
switch_buffer.c
switch_caller.c
switch_channel.c FS-10387: [core] High memory usage with mod_sofia, osmo-nitb and DTX setting active #resolve 2017-06-22 15:48:20 -05:00
switch_config.c
switch_console.c
switch_core.c FS-10189: [core] switch_core_add_state_handler runtime.state_handler_index may exceed SWITCH_MAX_STATE_HANDLERS #resolve 2017-06-05 18:31:56 -05:00
switch_core_asr.c
switch_core_cert.c FS-9785: changes to support newer openssl 2017-06-26 14:53:39 -05:00
switch_core_codec.c
switch_core_db.c
switch_core_directory.c
switch_core_event_hook.c
switch_core_file.c Merge pull request #1564 in FS/freeswitch from fs-11310-switch-core-file-pre-close to master 2018-08-09 06:53:04 +00:00
switch_core_hash.c
switch_core_io.c FS-11230: [core] Fix bad rtp timestamps triggered by cng/missed packet detection 2018-07-13 15:18:35 -04:00
switch_core_media.c FS-11052: Allow alias for crypto suites 2018-08-13 20:57:50 +00:00
switch_core_media_bug.c FS-10388: [core] fix crash on shutdown when using multiple meida bugs 2017-07-05 15:54:56 -05:00
switch_core_memory.c
switch_core_port_allocator.c
switch_core_rwlock.c
switch_core_session.c FS-10867: [freeswitch-core] Prevent stack smash when queing multiple sound files without event-lock #resolve 2018-07-24 07:21:38 +00:00
switch_core_speech.c
switch_core_sqldb.c FS-11202 Add sanity check 2018-07-24 07:21:54 +00:00
switch_core_state_machine.c
switch_core_timer.c
switch_core_video.c FS-11226: [freeswitch-core,mod_conference] Missing font files can lead to crash in conference #resolve 2018-07-24 07:21:56 +00:00
switch_cpp.cpp FS-11346: [core] add api to pass pre-parsed values instead of dial strings to switch_ivr_originate 2018-08-22 18:20:13 +00:00
switch_curl.c
switch_dso.c
switch_estimators.c FS-10876: [Build-System] Fix build in Visual Studio 2017 and Windows SDK 10. 2018-01-10 23:30:24 +03:00
switch_event.c FS-10989: [core] Fix CUSTOM_HASH hash table race in switch_event logic causing crashes during bind to events. 2018-07-24 07:21:42 +00:00
switch_hashtable.c FS-10601: [freeswitch-core] accomodate should be accommodate #resolve 2017-08-21 17:09:24 -05:00
switch_ivr.c FS-10867: [freeswitch-core] fix regression in stack smash protection 2018-07-24 07:21:50 +00:00
switch_ivr_async.c FS-11320 #resolve pass json string as param to ASR module 2018-08-13 19:00:39 +00:00
switch_ivr_bridge.c FS-11178: [core] return switch_status_t from switch_ivr_intercept_session 2018-07-24 07:21:53 +00:00
switch_ivr_menu.c
switch_ivr_originate.c FS-11346: [core] add api to pass pre-parsed values instead of dial strings to switch_ivr_originate 2018-08-22 18:20:13 +00:00
switch_ivr_play_say.c FS-11237 #resolve speak text with colon 2018-07-24 07:21:58 +00:00
switch_ivr_say.c
switch_jitterbuffer.c FS-11164: [freeswitch-core] Improve audio JB in bad conditions 2018-07-24 07:21:53 +00:00
switch_json.c
switch_limit.c
switch_loadable_module.c
switch_log.c
switch_mprintf.c
switch_msrp.c
switch_nat.c
switch_odbc.c
switch_pcm.c FS-10529: [mod_native_file] mod_native_file: remove "opus" extension -- fix regression 2017-08-17 16:08:40 -05:00
switch_pgsql.c FS-11074: [Core, Build-System] Add PostgreSQL to the Freeswitch Core on Windows. 2018-07-24 07:21:43 +00:00
switch_profile.c
switch_regex.c FS-11061: [core] fix build with newer pcre 2018-03-29 11:18:20 -04:00
switch_resample.c
switch_rtp.c FS-11052: Allow alias for crypto suites 2018-08-13 20:57:50 +00:00
switch_scheduler.c
switch_sdp.c
switch_speex.c
switch_stun.c FS-10394: [freeswitch-core] FS Crash while linphone sends ICE packets 2017-06-28 11:32:24 -05:00
switch_swig.c FS-11346: [core] add api to pass pre-parsed values instead of dial strings to switch_ivr_originate 2018-08-22 18:20:13 +00:00
switch_swig.i
switch_time.c
switch_utf8.c
switch_utils.c FS-11183 improve strip to save out buffer size 2018-07-24 07:21:56 +00:00
switch_vad.c FS-11340: [freeswitch-core] Add some more code to vad obj to enable debuging and manage states better #resolve 2018-08-21 00:03:18 +00:00
switch_version.c
switch_vpx.c FS-11189 make rtp-slice-size and key-frame-min-freq configurable 2018-07-24 07:21:57 +00:00
switch_xml.c FS-10946: [core] Duplicate code in switch_xml.c #resolve 2018-07-24 07:21:48 +00:00
switch_xml_config.c
tone2wav.c