diff --git a/src/mod/languages/mod_managed/freeswitch_wrap.cxx b/src/mod/languages/mod_managed/freeswitch_wrap.cxx index ba5c25630a..0be8a4b0c9 100644 --- a/src/mod/languages/mod_managed/freeswitch_wrap.cxx +++ b/src/mod/languages/mod_managed/freeswitch_wrap.cxx @@ -7162,30 +7162,6 @@ SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_add_state_handler(void * jarg1) { } -SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_curl_count(void * jarg1) { - int jresult ; - int *arg1 = (int *) 0 ; - int result; - - arg1 = (int *)jarg1; - result = (int)switch_core_curl_count(arg1); - jresult = result; - return jresult; -} - - -SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_ssl_count(void * jarg1) { - int jresult ; - int *arg1 = (int *) 0 ; - int result; - - arg1 = (int *)jarg1; - result = (int)switch_core_ssl_count(arg1); - jresult = result; - return jresult; -} - - SWIGEXPORT void SWIGSTDCALL CSharp_switch_core_remove_state_handler(void * jarg1) { switch_state_handler_table_t *arg1 = (switch_state_handler_table_t *) 0 ; diff --git a/src/mod/languages/mod_managed/managed/swig.cs b/src/mod/languages/mod_managed/managed/swig.cs index 5cd7a466d2..01fbcdf5c8 100644 --- a/src/mod/languages/mod_managed/managed/swig.cs +++ b/src/mod/languages/mod_managed/managed/swig.cs @@ -1183,16 +1183,6 @@ public class freeswitch { return ret; } - public static int switch_core_curl_count(SWIGTYPE_p_int val) { - int ret = freeswitchPINVOKE.switch_core_curl_count(SWIGTYPE_p_int.getCPtr(val)); - return ret; - } - - public static int switch_core_ssl_count(SWIGTYPE_p_int val) { - int ret = freeswitchPINVOKE.switch_core_ssl_count(SWIGTYPE_p_int.getCPtr(val)); - return ret; - } - public static void switch_core_remove_state_handler(switch_state_handler_table state_handler) { freeswitchPINVOKE.switch_core_remove_state_handler(switch_state_handler_table.getCPtr(state_handler)); } @@ -7901,12 +7891,6 @@ class freeswitchPINVOKE { [DllImport("mod_managed", EntryPoint="CSharp_switch_core_add_state_handler")] public static extern int switch_core_add_state_handler(HandleRef jarg1); - [DllImport("mod_managed", EntryPoint="CSharp_switch_core_curl_count")] - public static extern int switch_core_curl_count(HandleRef jarg1); - - [DllImport("mod_managed", EntryPoint="CSharp_switch_core_ssl_count")] - public static extern int switch_core_ssl_count(HandleRef jarg1); - [DllImport("mod_managed", EntryPoint="CSharp_switch_core_remove_state_handler")] public static extern void switch_core_remove_state_handler(HandleRef jarg1);