swigall stable
This commit is contained in:
parent
fcbb664df9
commit
b8b475855e
|
@ -9185,19 +9185,21 @@ SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_media_bug_set_pre_buffer_framecoun
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_port_allocator_new(unsigned short jarg1, unsigned short jarg2, unsigned long jarg3, void * jarg4) {
|
SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_port_allocator_new(char * jarg1, unsigned short jarg2, unsigned short jarg3, unsigned long jarg4, void * jarg5) {
|
||||||
int jresult ;
|
int jresult ;
|
||||||
switch_port_t arg1 ;
|
char *arg1 = (char *) 0 ;
|
||||||
switch_port_t arg2 ;
|
switch_port_t arg2 ;
|
||||||
switch_port_flag_t arg3 ;
|
switch_port_t arg3 ;
|
||||||
switch_core_port_allocator_t **arg4 = (switch_core_port_allocator_t **) 0 ;
|
switch_port_flag_t arg4 ;
|
||||||
|
switch_core_port_allocator_t **arg5 = (switch_core_port_allocator_t **) 0 ;
|
||||||
switch_status_t result;
|
switch_status_t result;
|
||||||
|
|
||||||
arg1 = (switch_port_t)jarg1;
|
arg1 = (char *)jarg1;
|
||||||
arg2 = (switch_port_t)jarg2;
|
arg2 = (switch_port_t)jarg2;
|
||||||
arg3 = (switch_port_flag_t)jarg3;
|
arg3 = (switch_port_t)jarg3;
|
||||||
arg4 = (switch_core_port_allocator_t **)jarg4;
|
arg4 = (switch_port_flag_t)jarg4;
|
||||||
result = (switch_status_t)switch_core_port_allocator_new(arg1,arg2,arg3,arg4);
|
arg5 = (switch_core_port_allocator_t **)jarg5;
|
||||||
|
result = (switch_status_t)switch_core_port_allocator_new((char const *)arg1,arg2,arg3,arg4,arg5);
|
||||||
jresult = result;
|
jresult = result;
|
||||||
return jresult;
|
return jresult;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1247,8 +1247,8 @@ public class freeswitch {
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static switch_status_t switch_core_port_allocator_new(ushort start, ushort end, uint flags, SWIGTYPE_p_p_switch_core_port_allocator new_allocator) {
|
public static switch_status_t switch_core_port_allocator_new(string ip, ushort start, ushort end, uint flags, SWIGTYPE_p_p_switch_core_port_allocator new_allocator) {
|
||||||
switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_core_port_allocator_new(start, end, flags, SWIGTYPE_p_p_switch_core_port_allocator.getCPtr(new_allocator));
|
switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_core_port_allocator_new(ip, start, end, flags, SWIGTYPE_p_p_switch_core_port_allocator.getCPtr(new_allocator));
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -9131,7 +9131,7 @@ class freeswitchPINVOKE {
|
||||||
public static extern int switch_core_media_bug_set_pre_buffer_framecount(HandleRef jarg1, uint jarg2);
|
public static extern int switch_core_media_bug_set_pre_buffer_framecount(HandleRef jarg1, uint jarg2);
|
||||||
|
|
||||||
[DllImport("mod_managed", EntryPoint="CSharp_switch_core_port_allocator_new")]
|
[DllImport("mod_managed", EntryPoint="CSharp_switch_core_port_allocator_new")]
|
||||||
public static extern int switch_core_port_allocator_new(ushort jarg1, ushort jarg2, uint jarg3, HandleRef jarg4);
|
public static extern int switch_core_port_allocator_new(string jarg1, ushort jarg2, ushort jarg3, uint jarg4, HandleRef jarg5);
|
||||||
|
|
||||||
[DllImport("mod_managed", EntryPoint="CSharp_switch_core_port_allocator_request_port")]
|
[DllImport("mod_managed", EntryPoint="CSharp_switch_core_port_allocator_request_port")]
|
||||||
public static extern int switch_core_port_allocator_request_port(HandleRef jarg1, HandleRef jarg2);
|
public static extern int switch_core_port_allocator_request_port(HandleRef jarg1, HandleRef jarg2);
|
||||||
|
@ -33159,7 +33159,9 @@ namespace FreeSWITCH.Native {
|
||||||
[System.Flags] public enum switch_port_flag_enum_t {
|
[System.Flags] public enum switch_port_flag_enum_t {
|
||||||
SPF_NONE = 0,
|
SPF_NONE = 0,
|
||||||
SPF_ODD = (1 << 0),
|
SPF_ODD = (1 << 0),
|
||||||
SPF_EVEN = (1 << 1)
|
SPF_EVEN = (1 << 1),
|
||||||
|
SPF_ROBUST_TCP = (1 << 2),
|
||||||
|
SPF_ROBUST_UDP = (1 << 3)
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue