diff --git a/src/mod/languages/mod_managed/freeswitch_wrap.2010.cxx b/src/mod/languages/mod_managed/freeswitch_wrap.2010.cxx index fdf2c5f08d..e08ed5c253 100644 --- a/src/mod/languages/mod_managed/freeswitch_wrap.2010.cxx +++ b/src/mod/languages/mod_managed/freeswitch_wrap.2010.cxx @@ -9315,6 +9315,16 @@ SWIGEXPORT int SWIGSTDCALL CSharp_set_high_priority() { } +SWIGEXPORT int SWIGSTDCALL CSharp_set_normal_priority() { + int jresult ; + int32_t result; + + result = (int32_t)set_normal_priority(); + jresult = result; + return jresult; +} + + SWIGEXPORT int SWIGSTDCALL CSharp_change_user_group(char * jarg1, char * jarg2) { int jresult ; char *arg1 = (char *) 0 ; @@ -9638,6 +9648,14 @@ SWIGEXPORT void SWIGSTDCALL CSharp_switch_time_set_monotonic(int jarg1) { } +SWIGEXPORT void SWIGSTDCALL CSharp_switch_time_set_timerfd(int jarg1) { + switch_bool_t arg1 ; + + arg1 = (switch_bool_t)jarg1; + switch_time_set_timerfd(arg1); +} + + SWIGEXPORT void SWIGSTDCALL CSharp_switch_time_set_nanosleep(int jarg1) { switch_bool_t arg1 ; @@ -23128,6 +23146,14 @@ SWIGEXPORT void SWIGSTDCALL CSharp_switch_channel_set_caller_extension(void * ja } +SWIGEXPORT void SWIGSTDCALL CSharp_switch_channel_flip_cid(void * jarg1) { + switch_channel_t *arg1 = (switch_channel_t *) 0 ; + + arg1 = (switch_channel_t *)jarg1; + switch_channel_flip_cid(arg1); +} + + SWIGEXPORT void SWIGSTDCALL CSharp_switch_channel_sort_cid(void * jarg1, int jarg2) { switch_channel_t *arg1 = (switch_channel_t *) 0 ; switch_bool_t arg2 ; diff --git a/src/mod/languages/mod_managed/managed/swig.2010.cs b/src/mod/languages/mod_managed/managed/swig.2010.cs index eb6d93531c..42ae909ebf 100644 --- a/src/mod/languages/mod_managed/managed/swig.2010.cs +++ b/src/mod/languages/mod_managed/managed/swig.2010.cs @@ -2134,6 +2134,11 @@ public class freeswitch { return ret; } + public static int set_normal_priority() { + int ret = freeswitchPINVOKE.set_normal_priority(); + return ret; + } + public static int change_user_group(string user, string group) { int ret = freeswitchPINVOKE.change_user_group(user, group); return ret; @@ -2275,6 +2280,10 @@ public class freeswitch { freeswitchPINVOKE.switch_time_set_monotonic((int)enable); } + public static void switch_time_set_timerfd(switch_bool_t enable) { + freeswitchPINVOKE.switch_time_set_timerfd((int)enable); + } + public static void switch_time_set_nanosleep(switch_bool_t enable) { freeswitchPINVOKE.switch_time_set_nanosleep((int)enable); } @@ -3415,6 +3424,10 @@ public class freeswitch { freeswitchPINVOKE.switch_channel_set_caller_extension(SWIGTYPE_p_switch_channel.getCPtr(channel), switch_caller_extension.getCPtr(caller_extension)); } + public static void switch_channel_flip_cid(SWIGTYPE_p_switch_channel channel) { + freeswitchPINVOKE.switch_channel_flip_cid(SWIGTYPE_p_switch_channel.getCPtr(channel)); + } + public static void switch_channel_sort_cid(SWIGTYPE_p_switch_channel channel, switch_bool_t arg1) { freeswitchPINVOKE.switch_channel_sort_cid(SWIGTYPE_p_switch_channel.getCPtr(channel), (int)arg1); } @@ -8068,6 +8081,9 @@ class freeswitchPINVOKE { [DllImport("mod_managed", EntryPoint="CSharp_set_high_priority")] public static extern int set_high_priority(); + [DllImport("mod_managed", EntryPoint="CSharp_set_normal_priority")] + public static extern int set_normal_priority(); + [DllImport("mod_managed", EntryPoint="CSharp_change_user_group")] public static extern int change_user_group(string jarg1, string jarg2); @@ -8155,6 +8171,9 @@ class freeswitchPINVOKE { [DllImport("mod_managed", EntryPoint="CSharp_switch_time_set_monotonic")] public static extern void switch_time_set_monotonic(int jarg1); + [DllImport("mod_managed", EntryPoint="CSharp_switch_time_set_timerfd")] + public static extern void switch_time_set_timerfd(int jarg1); + [DllImport("mod_managed", EntryPoint="CSharp_switch_time_set_nanosleep")] public static extern void switch_time_set_nanosleep(int jarg1); @@ -11500,6 +11519,9 @@ class freeswitchPINVOKE { [DllImport("mod_managed", EntryPoint="CSharp_switch_channel_set_caller_extension")] public static extern void switch_channel_set_caller_extension(HandleRef jarg1, HandleRef jarg2); + [DllImport("mod_managed", EntryPoint="CSharp_switch_channel_flip_cid")] + public static extern void switch_channel_flip_cid(HandleRef jarg1); + [DllImport("mod_managed", EntryPoint="CSharp_switch_channel_sort_cid")] public static extern void switch_channel_sort_cid(HandleRef jarg1, int jarg2); @@ -21716,6 +21738,8 @@ public enum switch_channel_flag_t { CF_DIALPLAN, CF_BLOCK_BROADCAST_UNTIL_MEDIA, CF_CNG_PLC, + CF_ATTENDED_TRANSFER, + CF_LAZY_ATTENDED_TRANSFER, CF_FLAG_MAX } @@ -28777,7 +28801,7 @@ namespace FreeSWITCH.Native { SWITCH_RTP_FLAG_BREAK = (1 << 10), SWITCH_RTP_FLAG_UDPTL = (1 << 11), SWITCH_RTP_FLAG_DATAWAIT = (1 << 12), - SWITCH_RTP_FLAG_BUGGY_2833 = (1 << 13), + SWITCH_RTP_FLAG_BYTESWAP = (1 << 13), SWITCH_RTP_FLAG_PASS_RFC2833 = (1 << 14), SWITCH_RTP_FLAG_AUTO_CNG = (1 << 15), SWITCH_RTP_FLAG_SECURE_SEND_RESET = (1 << 16),