FS-5675 --resolve

This commit is contained in:
Anthony Minessale
2014-01-24 00:23:58 +05:00
parent b5821c1594
commit 6fef880f12
7 changed files with 63 additions and 8 deletions
+1
View File
@@ -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;
+2 -1
View File
@@ -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);
+3 -1
View File
@@ -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;