mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-07-24 05:02:10 +00:00
FS-5675 --resolve
This commit is contained in:
@@ -277,6 +277,7 @@ struct switch_runtime {
|
||||
char *core_db_inner_pre_trans_execute;
|
||||
char *core_db_inner_post_trans_execute;
|
||||
int events_use_dispatch;
|
||||
uint32_t port_alloc_flags;
|
||||
};
|
||||
|
||||
extern struct switch_runtime runtime;
|
||||
|
||||
@@ -415,7 +415,8 @@ SWITCH_DECLARE(switch_status_t) switch_core_media_bug_set_pre_buffer_framecount(
|
||||
\param new_allocator new pointer for the return value
|
||||
\return SWITCH_STATUS_SUCCESS if the operation was a success
|
||||
*/
|
||||
SWITCH_DECLARE(switch_status_t) switch_core_port_allocator_new(_In_ switch_port_t start,
|
||||
SWITCH_DECLARE(switch_status_t) switch_core_port_allocator_new(_In_ const char *ip,
|
||||
_In_ switch_port_t start,
|
||||
_In_ switch_port_t end,
|
||||
_In_ switch_port_flag_t flags, _Out_ switch_core_port_allocator_t **new_allocator);
|
||||
|
||||
|
||||
@@ -311,7 +311,9 @@ typedef uint32_t switch_originate_flag_t;
|
||||
typedef enum {
|
||||
SPF_NONE = 0,
|
||||
SPF_ODD = (1 << 0),
|
||||
SPF_EVEN = (1 << 1)
|
||||
SPF_EVEN = (1 << 1),
|
||||
SPF_ROBUST_TCP = (1 << 2),
|
||||
SPF_ROBUST_UDP = (1 << 3)
|
||||
} switch_port_flag_enum_t;
|
||||
typedef uint32_t switch_port_flag_t;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user