mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-04 04:05:15 +00:00
add read_terminator_used var
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12840 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
9e32c325ce
commit
debe5daebb
@ -110,6 +110,7 @@ SWITCH_BEGIN_EXTERN_C
|
|||||||
#define SWITCH_PATH_SEPARATOR "/"
|
#define SWITCH_PATH_SEPARATOR "/"
|
||||||
#endif
|
#endif
|
||||||
#define SWITCH_URL_SEPARATOR "://"
|
#define SWITCH_URL_SEPARATOR "://"
|
||||||
|
#define SWITCH_READ_TERMINATOR_USED_VARIABLE "read_terminator_used"
|
||||||
#define SWITCH_SEND_SILENCE_WHEN_IDLE_VARIABLE "send_silence_when_idle"
|
#define SWITCH_SEND_SILENCE_WHEN_IDLE_VARIABLE "send_silence_when_idle"
|
||||||
#define SWITCH_CURRENT_APPLICATION_VARIABLE "current_application"
|
#define SWITCH_CURRENT_APPLICATION_VARIABLE "current_application"
|
||||||
#define SWITCH_CURRENT_APPLICATION_DATA_VARIABLE "current_application_data"
|
#define SWITCH_CURRENT_APPLICATION_DATA_VARIABLE "current_application_data"
|
||||||
|
@ -1446,8 +1446,8 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_read(switch_core_session_t *session,
|
|||||||
switch_channel_t *channel;
|
switch_channel_t *channel;
|
||||||
switch_input_args_t args = { 0 };
|
switch_input_args_t args = { 0 };
|
||||||
switch_status_t status = SWITCH_STATUS_SUCCESS;
|
switch_status_t status = SWITCH_STATUS_SUCCESS;
|
||||||
char terminator;
|
|
||||||
size_t len = 0;
|
size_t len = 0;
|
||||||
|
char tb[2] = "";
|
||||||
|
|
||||||
switch_assert(session);
|
switch_assert(session);
|
||||||
|
|
||||||
@ -1488,7 +1488,12 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_read(switch_core_session_t *session,
|
|||||||
if ((min_digits && len < min_digits) || len < max_digits) {
|
if ((min_digits && len < min_digits) || len < max_digits) {
|
||||||
args.buf = digit_buffer + len;
|
args.buf = digit_buffer + len;
|
||||||
args.buflen = (uint32_t) (digit_buffer_length - len);
|
args.buflen = (uint32_t) (digit_buffer_length - len);
|
||||||
status = switch_ivr_collect_digits_count(session, digit_buffer, digit_buffer_length, max_digits, valid_terminators, &terminator, timeout, 0, 0);
|
status = switch_ivr_collect_digits_count(session, digit_buffer, digit_buffer_length, max_digits, valid_terminators, &tb[0], timeout, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (tb[0]) {
|
||||||
|
switch_channel_set_variable(channel, SWITCH_READ_TERMINATOR_USED_VARIABLE, tb);
|
||||||
}
|
}
|
||||||
|
|
||||||
len = strlen(digit_buffer);
|
len = strlen(digit_buffer);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user