mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-07-24 13:12:03 +00:00
Merge pull request #1656 in FS/freeswitch from ~LAZEDO/freeswitch:bug/FS-11608 to master
* commit '8ed52f4c266446e29fa040c49f55b79081054fcb': [FS-11609] [core] lookup values in caller profile soft variables [FS-11608] [core] set prefix for caller profile soft variables
This commit is contained in:
@@ -377,7 +377,9 @@ typedef enum {
|
||||
SCF_DEBUG_SQL = (1 << 21),
|
||||
SCF_API_EXPANSION = (1 << 22),
|
||||
SCF_SESSION_THREAD_POOL = (1 << 23),
|
||||
SCF_DIALPLAN_TIMESTAMPS = (1 << 24)
|
||||
SCF_DIALPLAN_TIMESTAMPS = (1 << 24),
|
||||
SCF_CPF_SOFT_PREFIX = (1 << 25),
|
||||
SCF_CPF_SOFT_LOOKUP = (1 << 26)
|
||||
} switch_core_flag_enum_t;
|
||||
typedef uint32_t switch_core_flag_t;
|
||||
|
||||
@@ -578,7 +580,9 @@ typedef enum {
|
||||
SWITCH_CPF_NONE = 0,
|
||||
SWITCH_CPF_SCREEN = (1 << 0),
|
||||
SWITCH_CPF_HIDE_NAME = (1 << 1),
|
||||
SWITCH_CPF_HIDE_NUMBER = (1 << 2)
|
||||
SWITCH_CPF_HIDE_NUMBER = (1 << 2),
|
||||
SWITCH_CPF_SOFT_PREFIX = (1 << 3),
|
||||
SWITCH_CPF_SOFT_LOOKUP = (1 << 4)
|
||||
} switch_caller_profile_flag_enum_t;
|
||||
typedef uint32_t switch_caller_profile_flag_t;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user