mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-07-13 15:51:50 +00:00
FS-4709 --resolve, not adding the change to switch_rtp I want to have that log line there, don't make vanity changes mixed in with code changes
This commit is contained in:
@@ -552,7 +552,7 @@ SWITCH_DECLARE(switch_status_t) switch_channel_dtmf_unlock(switch_channel_t *cha
|
||||
\param dtmf digit
|
||||
\return SWITCH_STATUS_SUCCESS if successful
|
||||
*/
|
||||
SWITCH_DECLARE(switch_status_t) switch_channel_queue_dtmf(_In_ switch_channel_t *channel, _In_ const switch_dtmf_t *dtmf);
|
||||
SWITCH_DECLARE(switch_status_t) switch_channel_queue_dtmf(_In_ switch_channel_t *channel, _In_ switch_dtmf_t *dtmf);
|
||||
SWITCH_DECLARE(switch_status_t) switch_channel_queue_dtmf_string(_In_ switch_channel_t *channel, _In_ const char *dtmf_string);
|
||||
|
||||
/*!
|
||||
|
||||
@@ -138,6 +138,7 @@ SWITCH_BEGIN_EXTERN_C
|
||||
#define SWITCH_PROTO_SPECIFIC_HANGUP_CAUSE_VARIABLE "proto_specific_hangup_cause"
|
||||
#define SWITCH_TRANSFER_HISTORY_VARIABLE "transfer_history"
|
||||
#define SWITCH_TRANSFER_SOURCE_VARIABLE "transfer_source"
|
||||
#define SWITCH_SENSITIVE_DTMF_VARIABLE "sensitive_dtmf"
|
||||
|
||||
#define SWITCH_CHANNEL_EXECUTE_ON_ANSWER_VARIABLE "execute_on_answer"
|
||||
#define SWITCH_CHANNEL_EXECUTE_ON_PRE_ANSWER_VARIABLE "execute_on_pre_answer"
|
||||
@@ -246,7 +247,8 @@ typedef enum {
|
||||
|
||||
|
||||
typedef enum {
|
||||
DTMF_FLAG_SKIP_PROCESS = (1 << 0)
|
||||
DTMF_FLAG_SKIP_PROCESS = (1 << 0),
|
||||
DTMF_FLAG_SENSITIVE = (1 << 1)
|
||||
} dtmf_flag_t;
|
||||
|
||||
typedef struct {
|
||||
|
||||
Reference in New Issue
Block a user