From 97d2584de0ae43253e7da343340630b2b47cf583 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Sat, 21 Nov 2009 19:36:39 +0000 Subject: [PATCH] swigall git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15601 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- .../languages/mod_managed/freeswitch_wrap.cxx | 404 +++++++++++++++- src/mod/languages/mod_managed/managed/swig.cs | 455 +++++++++++++++++- 2 files changed, 807 insertions(+), 52 deletions(-) diff --git a/src/mod/languages/mod_managed/freeswitch_wrap.cxx b/src/mod/languages/mod_managed/freeswitch_wrap.cxx index 6e8af044a5..f99d284b03 100644 --- a/src/mod/languages/mod_managed/freeswitch_wrap.cxx +++ b/src/mod/languages/mod_managed/freeswitch_wrap.cxx @@ -5606,6 +5606,18 @@ SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_media_bug_remove(void * jarg1, voi } +SWIGEXPORT unsigned long SWIGSTDCALL CSharp_switch_core_media_bug_prune(void * jarg1) { + unsigned long jresult ; + switch_core_session_t *arg1 = (switch_core_session_t *) 0 ; + uint32_t result; + + arg1 = (switch_core_session_t *)jarg1; + result = (uint32_t)switch_core_media_bug_prune(arg1); + jresult = (unsigned long)result; + return jresult; +} + + SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_media_bug_remove_callback(void * jarg1, void * jarg2) { int jresult ; switch_core_session_t *arg1 = (switch_core_session_t *) 0 ; @@ -8739,6 +8751,294 @@ SWIGEXPORT int SWIGSTDCALL CSharp_CACHE_DB_LEN_get() { } +SWIGEXPORT void SWIGSTDCALL CSharp_switch_cache_db_native_handle_t_core_db_dbh_set(void * jarg1, void * jarg2) { + switch_cache_db_native_handle_t *arg1 = (switch_cache_db_native_handle_t *) 0 ; + switch_core_db_t *arg2 = (switch_core_db_t *) 0 ; + + arg1 = (switch_cache_db_native_handle_t *)jarg1; + arg2 = (switch_core_db_t *)jarg2; + if (arg1) (arg1)->core_db_dbh = arg2; + +} + + +SWIGEXPORT void * SWIGSTDCALL CSharp_switch_cache_db_native_handle_t_core_db_dbh_get(void * jarg1) { + void * jresult ; + switch_cache_db_native_handle_t *arg1 = (switch_cache_db_native_handle_t *) 0 ; + switch_core_db_t *result = 0 ; + + arg1 = (switch_cache_db_native_handle_t *)jarg1; + result = (switch_core_db_t *) ((arg1)->core_db_dbh); + jresult = (void *)result; + return jresult; +} + + +SWIGEXPORT void SWIGSTDCALL CSharp_switch_cache_db_native_handle_t_odbc_dbh_set(void * jarg1, void * jarg2) { + switch_cache_db_native_handle_t *arg1 = (switch_cache_db_native_handle_t *) 0 ; + switch_odbc_handle_t *arg2 = (switch_odbc_handle_t *) 0 ; + + arg1 = (switch_cache_db_native_handle_t *)jarg1; + arg2 = (switch_odbc_handle_t *)jarg2; + if (arg1) (arg1)->odbc_dbh = arg2; + +} + + +SWIGEXPORT void * SWIGSTDCALL CSharp_switch_cache_db_native_handle_t_odbc_dbh_get(void * jarg1) { + void * jresult ; + switch_cache_db_native_handle_t *arg1 = (switch_cache_db_native_handle_t *) 0 ; + switch_odbc_handle_t *result = 0 ; + + arg1 = (switch_cache_db_native_handle_t *)jarg1; + result = (switch_odbc_handle_t *) ((arg1)->odbc_dbh); + jresult = (void *)result; + return jresult; +} + + +SWIGEXPORT void * SWIGSTDCALL CSharp_new_switch_cache_db_native_handle_t() { + void * jresult ; + switch_cache_db_native_handle_t *result = 0 ; + + result = (switch_cache_db_native_handle_t *)new switch_cache_db_native_handle_t(); + jresult = (void *)result; + return jresult; +} + + +SWIGEXPORT void SWIGSTDCALL CSharp_delete_switch_cache_db_native_handle_t(void * jarg1) { + switch_cache_db_native_handle_t *arg1 = (switch_cache_db_native_handle_t *) 0 ; + + arg1 = (switch_cache_db_native_handle_t *)jarg1; + delete arg1; + +} + + +SWIGEXPORT void SWIGSTDCALL CSharp_switch_cache_db_core_db_options_t_db_path_set(void * jarg1, char * jarg2) { + switch_cache_db_core_db_options_t *arg1 = (switch_cache_db_core_db_options_t *) 0 ; + char *arg2 = (char *) 0 ; + + arg1 = (switch_cache_db_core_db_options_t *)jarg1; + arg2 = (char *)jarg2; + { + if (arg1->db_path) delete [] arg1->db_path; + if (arg2) { + arg1->db_path = (char *) (new char[strlen((const char *)arg2)+1]); + strcpy((char *)arg1->db_path, (const char *)arg2); + } else { + arg1->db_path = 0; + } + } +} + + +SWIGEXPORT char * SWIGSTDCALL CSharp_switch_cache_db_core_db_options_t_db_path_get(void * jarg1) { + char * jresult ; + switch_cache_db_core_db_options_t *arg1 = (switch_cache_db_core_db_options_t *) 0 ; + char *result = 0 ; + + arg1 = (switch_cache_db_core_db_options_t *)jarg1; + result = (char *) ((arg1)->db_path); + jresult = SWIG_csharp_string_callback((const char *)result); + return jresult; +} + + +SWIGEXPORT void * SWIGSTDCALL CSharp_new_switch_cache_db_core_db_options_t() { + void * jresult ; + switch_cache_db_core_db_options_t *result = 0 ; + + result = (switch_cache_db_core_db_options_t *)new switch_cache_db_core_db_options_t(); + jresult = (void *)result; + return jresult; +} + + +SWIGEXPORT void SWIGSTDCALL CSharp_delete_switch_cache_db_core_db_options_t(void * jarg1) { + switch_cache_db_core_db_options_t *arg1 = (switch_cache_db_core_db_options_t *) 0 ; + + arg1 = (switch_cache_db_core_db_options_t *)jarg1; + delete arg1; + +} + + +SWIGEXPORT void SWIGSTDCALL CSharp_switch_cache_db_odbc_options_t_dsn_set(void * jarg1, char * jarg2) { + switch_cache_db_odbc_options_t *arg1 = (switch_cache_db_odbc_options_t *) 0 ; + char *arg2 = (char *) 0 ; + + arg1 = (switch_cache_db_odbc_options_t *)jarg1; + arg2 = (char *)jarg2; + { + if (arg1->dsn) delete [] arg1->dsn; + if (arg2) { + arg1->dsn = (char *) (new char[strlen((const char *)arg2)+1]); + strcpy((char *)arg1->dsn, (const char *)arg2); + } else { + arg1->dsn = 0; + } + } +} + + +SWIGEXPORT char * SWIGSTDCALL CSharp_switch_cache_db_odbc_options_t_dsn_get(void * jarg1) { + char * jresult ; + switch_cache_db_odbc_options_t *arg1 = (switch_cache_db_odbc_options_t *) 0 ; + char *result = 0 ; + + arg1 = (switch_cache_db_odbc_options_t *)jarg1; + result = (char *) ((arg1)->dsn); + jresult = SWIG_csharp_string_callback((const char *)result); + return jresult; +} + + +SWIGEXPORT void SWIGSTDCALL CSharp_switch_cache_db_odbc_options_t_user_set(void * jarg1, char * jarg2) { + switch_cache_db_odbc_options_t *arg1 = (switch_cache_db_odbc_options_t *) 0 ; + char *arg2 = (char *) 0 ; + + arg1 = (switch_cache_db_odbc_options_t *)jarg1; + arg2 = (char *)jarg2; + { + if (arg1->user) delete [] arg1->user; + if (arg2) { + arg1->user = (char *) (new char[strlen((const char *)arg2)+1]); + strcpy((char *)arg1->user, (const char *)arg2); + } else { + arg1->user = 0; + } + } +} + + +SWIGEXPORT char * SWIGSTDCALL CSharp_switch_cache_db_odbc_options_t_user_get(void * jarg1) { + char * jresult ; + switch_cache_db_odbc_options_t *arg1 = (switch_cache_db_odbc_options_t *) 0 ; + char *result = 0 ; + + arg1 = (switch_cache_db_odbc_options_t *)jarg1; + result = (char *) ((arg1)->user); + jresult = SWIG_csharp_string_callback((const char *)result); + return jresult; +} + + +SWIGEXPORT void SWIGSTDCALL CSharp_switch_cache_db_odbc_options_t_pass_set(void * jarg1, char * jarg2) { + switch_cache_db_odbc_options_t *arg1 = (switch_cache_db_odbc_options_t *) 0 ; + char *arg2 = (char *) 0 ; + + arg1 = (switch_cache_db_odbc_options_t *)jarg1; + arg2 = (char *)jarg2; + { + if (arg1->pass) delete [] arg1->pass; + if (arg2) { + arg1->pass = (char *) (new char[strlen((const char *)arg2)+1]); + strcpy((char *)arg1->pass, (const char *)arg2); + } else { + arg1->pass = 0; + } + } +} + + +SWIGEXPORT char * SWIGSTDCALL CSharp_switch_cache_db_odbc_options_t_pass_get(void * jarg1) { + char * jresult ; + switch_cache_db_odbc_options_t *arg1 = (switch_cache_db_odbc_options_t *) 0 ; + char *result = 0 ; + + arg1 = (switch_cache_db_odbc_options_t *)jarg1; + result = (char *) ((arg1)->pass); + jresult = SWIG_csharp_string_callback((const char *)result); + return jresult; +} + + +SWIGEXPORT void * SWIGSTDCALL CSharp_new_switch_cache_db_odbc_options_t() { + void * jresult ; + switch_cache_db_odbc_options_t *result = 0 ; + + result = (switch_cache_db_odbc_options_t *)new switch_cache_db_odbc_options_t(); + jresult = (void *)result; + return jresult; +} + + +SWIGEXPORT void SWIGSTDCALL CSharp_delete_switch_cache_db_odbc_options_t(void * jarg1) { + switch_cache_db_odbc_options_t *arg1 = (switch_cache_db_odbc_options_t *) 0 ; + + arg1 = (switch_cache_db_odbc_options_t *)jarg1; + delete arg1; + +} + + +SWIGEXPORT void SWIGSTDCALL CSharp_switch_cache_db_connection_options_t_core_db_options_set(void * jarg1, void * jarg2) { + switch_cache_db_connection_options_t *arg1 = (switch_cache_db_connection_options_t *) 0 ; + switch_cache_db_core_db_options_t *arg2 = (switch_cache_db_core_db_options_t *) 0 ; + + arg1 = (switch_cache_db_connection_options_t *)jarg1; + arg2 = (switch_cache_db_core_db_options_t *)jarg2; + if (arg1) (arg1)->core_db_options = *arg2; + +} + + +SWIGEXPORT void * SWIGSTDCALL CSharp_switch_cache_db_connection_options_t_core_db_options_get(void * jarg1) { + void * jresult ; + switch_cache_db_connection_options_t *arg1 = (switch_cache_db_connection_options_t *) 0 ; + switch_cache_db_core_db_options_t *result = 0 ; + + arg1 = (switch_cache_db_connection_options_t *)jarg1; + result = (switch_cache_db_core_db_options_t *)& ((arg1)->core_db_options); + jresult = (void *)result; + return jresult; +} + + +SWIGEXPORT void SWIGSTDCALL CSharp_switch_cache_db_connection_options_t_odbc_options_set(void * jarg1, void * jarg2) { + switch_cache_db_connection_options_t *arg1 = (switch_cache_db_connection_options_t *) 0 ; + switch_cache_db_odbc_options_t *arg2 = (switch_cache_db_odbc_options_t *) 0 ; + + arg1 = (switch_cache_db_connection_options_t *)jarg1; + arg2 = (switch_cache_db_odbc_options_t *)jarg2; + if (arg1) (arg1)->odbc_options = *arg2; + +} + + +SWIGEXPORT void * SWIGSTDCALL CSharp_switch_cache_db_connection_options_t_odbc_options_get(void * jarg1) { + void * jresult ; + switch_cache_db_connection_options_t *arg1 = (switch_cache_db_connection_options_t *) 0 ; + switch_cache_db_odbc_options_t *result = 0 ; + + arg1 = (switch_cache_db_connection_options_t *)jarg1; + result = (switch_cache_db_odbc_options_t *)& ((arg1)->odbc_options); + jresult = (void *)result; + return jresult; +} + + +SWIGEXPORT void * SWIGSTDCALL CSharp_new_switch_cache_db_connection_options_t() { + void * jresult ; + switch_cache_db_connection_options_t *result = 0 ; + + result = (switch_cache_db_connection_options_t *)new switch_cache_db_connection_options_t(); + jresult = (void *)result; + return jresult; +} + + +SWIGEXPORT void SWIGSTDCALL CSharp_delete_switch_cache_db_connection_options_t(void * jarg1) { + switch_cache_db_connection_options_t *arg1 = (switch_cache_db_connection_options_t *) 0 ; + + arg1 = (switch_cache_db_connection_options_t *)jarg1; + delete arg1; + +} + + SWIGEXPORT void SWIGSTDCALL CSharp_switch_cache_db_handle_t_name_set(void * jarg1, char * jarg2) { switch_cache_db_handle_t *arg1 = (switch_cache_db_handle_t *) 0 ; char *arg2 ; @@ -8764,47 +9064,47 @@ SWIGEXPORT char * SWIGSTDCALL CSharp_switch_cache_db_handle_t_name_get(void * ja } -SWIGEXPORT void SWIGSTDCALL CSharp_switch_cache_db_handle_t_db_set(void * jarg1, void * jarg2) { +SWIGEXPORT void SWIGSTDCALL CSharp_switch_cache_db_handle_t_type_set(void * jarg1, int jarg2) { switch_cache_db_handle_t *arg1 = (switch_cache_db_handle_t *) 0 ; - switch_core_db_t *arg2 = (switch_core_db_t *) 0 ; + switch_cache_db_handle_type_t arg2 ; arg1 = (switch_cache_db_handle_t *)jarg1; - arg2 = (switch_core_db_t *)jarg2; - if (arg1) (arg1)->db = arg2; + arg2 = (switch_cache_db_handle_type_t)jarg2; + if (arg1) (arg1)->type = arg2; } -SWIGEXPORT void * SWIGSTDCALL CSharp_switch_cache_db_handle_t_db_get(void * jarg1) { - void * jresult ; +SWIGEXPORT int SWIGSTDCALL CSharp_switch_cache_db_handle_t_type_get(void * jarg1) { + int jresult ; switch_cache_db_handle_t *arg1 = (switch_cache_db_handle_t *) 0 ; - switch_core_db_t *result = 0 ; + switch_cache_db_handle_type_t result; arg1 = (switch_cache_db_handle_t *)jarg1; - result = (switch_core_db_t *) ((arg1)->db); - jresult = (void *)result; + result = (switch_cache_db_handle_type_t) ((arg1)->type); + jresult = result; return jresult; } -SWIGEXPORT void SWIGSTDCALL CSharp_switch_cache_db_handle_t_odbc_dbh_set(void * jarg1, void * jarg2) { +SWIGEXPORT void SWIGSTDCALL CSharp_switch_cache_db_handle_t_native_handle_set(void * jarg1, void * jarg2) { switch_cache_db_handle_t *arg1 = (switch_cache_db_handle_t *) 0 ; - switch_odbc_handle_t *arg2 = (switch_odbc_handle_t *) 0 ; + switch_cache_db_native_handle_t *arg2 = (switch_cache_db_native_handle_t *) 0 ; arg1 = (switch_cache_db_handle_t *)jarg1; - arg2 = (switch_odbc_handle_t *)jarg2; - if (arg1) (arg1)->odbc_dbh = arg2; + arg2 = (switch_cache_db_native_handle_t *)jarg2; + if (arg1) (arg1)->native_handle = *arg2; } -SWIGEXPORT void * SWIGSTDCALL CSharp_switch_cache_db_handle_t_odbc_dbh_get(void * jarg1) { +SWIGEXPORT void * SWIGSTDCALL CSharp_switch_cache_db_handle_t_native_handle_get(void * jarg1) { void * jresult ; switch_cache_db_handle_t *arg1 = (switch_cache_db_handle_t *) 0 ; - switch_odbc_handle_t *result = 0 ; + switch_cache_db_native_handle_t *result = 0 ; arg1 = (switch_cache_db_handle_t *)jarg1; - result = (switch_odbc_handle_t *) ((arg1)->odbc_dbh); + result = (switch_cache_db_native_handle_t *)& ((arg1)->native_handle); jresult = (void *)result; return jresult; } @@ -8927,6 +9227,18 @@ SWIGEXPORT void SWIGSTDCALL CSharp_delete_switch_cache_db_handle_t(void * jarg1) } +SWIGEXPORT char * SWIGSTDCALL CSharp_switch_cache_db_type_name(int jarg1) { + char * jresult ; + switch_cache_db_handle_type_t arg1 ; + char *result = 0 ; + + arg1 = (switch_cache_db_handle_type_t)jarg1; + result = (char *)switch_cache_db_type_name(arg1); + jresult = SWIG_csharp_string_callback((const char *)result); + return jresult; +} + + SWIGEXPORT void SWIGSTDCALL CSharp_switch_cache_db_release_db_handle(void * jarg1) { switch_cache_db_handle_t **arg1 = (switch_cache_db_handle_t **) 0 ; @@ -8943,20 +9255,44 @@ SWIGEXPORT void SWIGSTDCALL CSharp_switch_cache_db_destroy_db_handle(void * jarg } -SWIGEXPORT int SWIGSTDCALL CSharp_switch_cache_db_get_db_handle(void * jarg1, char * jarg2, char * jarg3, char * jarg4) { +SWIGEXPORT int SWIGSTDCALL CSharp__switch_cache_db_get_db_handle(void * jarg1, int jarg2, void * jarg3, char * jarg4, char * jarg5, int jarg6) { int jresult ; switch_cache_db_handle_t **arg1 = (switch_cache_db_handle_t **) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; + switch_cache_db_handle_type_t arg2 ; + switch_cache_db_connection_options_t *arg3 = (switch_cache_db_connection_options_t *) 0 ; char *arg4 = (char *) 0 ; + char *arg5 = (char *) 0 ; + int arg6 ; switch_status_t result; arg1 = (switch_cache_db_handle_t **)jarg1; + arg2 = (switch_cache_db_handle_type_t)jarg2; + arg3 = (switch_cache_db_connection_options_t *)jarg3; + arg4 = (char *)jarg4; + arg5 = (char *)jarg5; + arg6 = (int)jarg6; + result = (switch_status_t)_switch_cache_db_get_db_handle(arg1,arg2,arg3,(char const *)arg4,(char const *)arg5,arg6); + jresult = result; + return jresult; +} + + +SWIGEXPORT char * SWIGSTDCALL CSharp_switch_cache_db_execute_sql2str(void * jarg1, char * jarg2, char * jarg3, unsigned long jarg4, void * jarg5) { + char * jresult ; + switch_cache_db_handle_t *arg1 = (switch_cache_db_handle_t *) 0 ; + char *arg2 = (char *) 0 ; + char *arg3 = (char *) 0 ; + size_t arg4 ; + char **arg5 = (char **) 0 ; + char *result = 0 ; + + arg1 = (switch_cache_db_handle_t *)jarg1; arg2 = (char *)jarg2; arg3 = (char *)jarg3; - arg4 = (char *)jarg4; - result = (switch_status_t)switch_cache_db_get_db_handle(arg1,(char const *)arg2,(char const *)arg3,(char const *)arg4); - jresult = result; + arg4 = (size_t)jarg4; + arg5 = (char **)jarg5; + result = (char *)switch_cache_db_execute_sql2str(arg1,arg2,arg3,arg4,arg5); + jresult = SWIG_csharp_string_callback((const char *)result); return jresult; } @@ -8971,7 +9307,7 @@ SWIGEXPORT int SWIGSTDCALL CSharp_switch_cache_db_execute_sql(void * jarg1, char arg1 = (switch_cache_db_handle_t *)jarg1; arg2 = (char *)jarg2; arg3 = (char **)jarg3; - result = (switch_status_t)switch_cache_db_execute_sql(arg1,(char const *)arg2,arg3); + result = (switch_status_t)switch_cache_db_execute_sql(arg1,arg2,arg3); jresult = result; return jresult; } @@ -8997,13 +9333,19 @@ SWIGEXPORT int SWIGSTDCALL CSharp_switch_cache_db_execute_sql_callback(void * ja } -SWIGEXPORT int SWIGSTDCALL CSharp_switch_core_db_handle(void * jarg1) { +SWIGEXPORT int SWIGSTDCALL CSharp__switch_core_db_handle(void * jarg1, char * jarg2, char * jarg3, int jarg4) { int jresult ; switch_cache_db_handle_t **arg1 = (switch_cache_db_handle_t **) 0 ; + char *arg2 = (char *) 0 ; + char *arg3 = (char *) 0 ; + int arg4 ; switch_status_t result; arg1 = (switch_cache_db_handle_t **)jarg1; - result = (switch_status_t)switch_core_db_handle(arg1); + arg2 = (char *)jarg2; + arg3 = (char *)jarg3; + arg4 = (int)jarg4; + result = (switch_status_t)_switch_core_db_handle(arg1,(char const *)arg2,(char const *)arg3,arg4); jresult = result; return jresult; } @@ -9049,7 +9391,7 @@ SWIGEXPORT int SWIGSTDCALL CSharp_switch_cache_db_persistant_execute_trans(void arg1 = (switch_cache_db_handle_t *)jarg1; arg2 = (char *)jarg2; arg3 = (uint32_t)jarg3; - result = (switch_status_t)switch_cache_db_persistant_execute_trans(arg1,(char const *)arg2,arg3); + result = (switch_status_t)switch_cache_db_persistant_execute_trans(arg1,arg2,arg3); jresult = result; return jresult; } @@ -9060,6 +9402,16 @@ SWIGEXPORT void SWIGSTDCALL CSharp_switch_cache_db_detach() { } +SWIGEXPORT unsigned long SWIGSTDCALL CSharp_switch_core_debug_level() { + unsigned long jresult ; + uint32_t result; + + result = (uint32_t)switch_core_debug_level(); + jresult = (unsigned long)result; + return jresult; +} + + SWIGEXPORT int SWIGSTDCALL CSharp_SWITCH_CMD_CHUNK_LEN_get() { int jresult ; int result; diff --git a/src/mod/languages/mod_managed/managed/swig.cs b/src/mod/languages/mod_managed/managed/swig.cs index 3c7d9e50fb..01f32d5956 100644 --- a/src/mod/languages/mod_managed/managed/swig.cs +++ b/src/mod/languages/mod_managed/managed/swig.cs @@ -968,6 +968,11 @@ public class freeswitch { return ret; } + public static uint switch_core_media_bug_prune(SWIGTYPE_p_switch_core_session session) { + uint ret = freeswitchPINVOKE.switch_core_media_bug_prune(SWIGTYPE_p_switch_core_session.getCPtr(session)); + return ret; + } + public static switch_status_t switch_core_media_bug_remove_callback(SWIGTYPE_p_switch_core_session session, SWIGTYPE_p_f_p_switch_media_bug_p_void_enum_switch_abc_type_t__switch_bool_t callback) { switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_core_media_bug_remove_callback(SWIGTYPE_p_switch_core_session.getCPtr(session), SWIGTYPE_p_f_p_switch_media_bug_p_void_enum_switch_abc_type_t__switch_bool_t.getCPtr(callback)); return ret; @@ -2104,6 +2109,11 @@ public class freeswitch { return ret; } + public static string switch_cache_db_type_name(switch_cache_db_handle_type_t type) { + string ret = freeswitchPINVOKE.switch_cache_db_type_name((int)type); + return ret; + } + public static void switch_cache_db_release_db_handle(SWIGTYPE_p_p_switch_cache_db_handle_t dbh) { freeswitchPINVOKE.switch_cache_db_release_db_handle(SWIGTYPE_p_p_switch_cache_db_handle_t.getCPtr(dbh)); } @@ -2112,8 +2122,13 @@ public class freeswitch { freeswitchPINVOKE.switch_cache_db_destroy_db_handle(SWIGTYPE_p_p_switch_cache_db_handle_t.getCPtr(dbh)); } - public static switch_status_t switch_cache_db_get_db_handle(SWIGTYPE_p_p_switch_cache_db_handle_t dbh, string db_name, string odbc_user, string odbc_pass) { - switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_cache_db_get_db_handle(SWIGTYPE_p_p_switch_cache_db_handle_t.getCPtr(dbh), db_name, odbc_user, odbc_pass); + public static switch_status_t _switch_cache_db_get_db_handle(SWIGTYPE_p_p_switch_cache_db_handle_t dbh, switch_cache_db_handle_type_t type, switch_cache_db_connection_options_t connection_options, string file, string func, int line) { + switch_status_t ret = (switch_status_t)freeswitchPINVOKE._switch_cache_db_get_db_handle(SWIGTYPE_p_p_switch_cache_db_handle_t.getCPtr(dbh), (int)type, switch_cache_db_connection_options_t.getCPtr(connection_options), file, func, line); + return ret; + } + + public static string switch_cache_db_execute_sql2str(switch_cache_db_handle_t dbh, string sql, string str, uint len, ref string err) { + string ret = freeswitchPINVOKE.switch_cache_db_execute_sql2str(switch_cache_db_handle_t.getCPtr(dbh), sql, str, len, ref err); return ret; } @@ -2127,8 +2142,8 @@ public class freeswitch { return ret; } - public static switch_status_t switch_core_db_handle(SWIGTYPE_p_p_switch_cache_db_handle_t dbh) { - switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_core_db_handle(SWIGTYPE_p_p_switch_cache_db_handle_t.getCPtr(dbh)); + public static switch_status_t _switch_core_db_handle(SWIGTYPE_p_p_switch_cache_db_handle_t dbh, string file, string func, int line) { + switch_status_t ret = (switch_status_t)freeswitchPINVOKE._switch_core_db_handle(SWIGTYPE_p_p_switch_cache_db_handle_t.getCPtr(dbh), file, func, line); return ret; } @@ -2150,6 +2165,11 @@ public class freeswitch { freeswitchPINVOKE.switch_cache_db_detach(); } + public static uint switch_core_debug_level() { + uint ret = freeswitchPINVOKE.switch_core_debug_level(); + return ret; + } + public static void switch_console_loop() { freeswitchPINVOKE.switch_console_loop(); } @@ -6158,6 +6178,9 @@ class freeswitchPINVOKE { [DllImport("mod_managed", EntryPoint="CSharp_switch_core_media_bug_remove")] public static extern int switch_core_media_bug_remove(HandleRef jarg1, HandleRef jarg2); + [DllImport("mod_managed", EntryPoint="CSharp_switch_core_media_bug_prune")] + public static extern uint switch_core_media_bug_prune(HandleRef jarg1); + [DllImport("mod_managed", EntryPoint="CSharp_switch_core_media_bug_remove_callback")] public static extern int switch_core_media_bug_remove_callback(HandleRef jarg1, HandleRef jarg2); @@ -6851,23 +6874,95 @@ class freeswitchPINVOKE { [DllImport("mod_managed", EntryPoint="CSharp_CACHE_DB_LEN_get")] public static extern int CACHE_DB_LEN_get(); + [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_native_handle_t_core_db_dbh_set")] + public static extern void switch_cache_db_native_handle_t_core_db_dbh_set(HandleRef jarg1, HandleRef jarg2); + + [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_native_handle_t_core_db_dbh_get")] + public static extern IntPtr switch_cache_db_native_handle_t_core_db_dbh_get(HandleRef jarg1); + + [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_native_handle_t_odbc_dbh_set")] + public static extern void switch_cache_db_native_handle_t_odbc_dbh_set(HandleRef jarg1, HandleRef jarg2); + + [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_native_handle_t_odbc_dbh_get")] + public static extern IntPtr switch_cache_db_native_handle_t_odbc_dbh_get(HandleRef jarg1); + + [DllImport("mod_managed", EntryPoint="CSharp_new_switch_cache_db_native_handle_t")] + public static extern IntPtr new_switch_cache_db_native_handle_t(); + + [DllImport("mod_managed", EntryPoint="CSharp_delete_switch_cache_db_native_handle_t")] + public static extern void delete_switch_cache_db_native_handle_t(HandleRef jarg1); + + [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_core_db_options_t_db_path_set")] + public static extern void switch_cache_db_core_db_options_t_db_path_set(HandleRef jarg1, string jarg2); + + [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_core_db_options_t_db_path_get")] + public static extern string switch_cache_db_core_db_options_t_db_path_get(HandleRef jarg1); + + [DllImport("mod_managed", EntryPoint="CSharp_new_switch_cache_db_core_db_options_t")] + public static extern IntPtr new_switch_cache_db_core_db_options_t(); + + [DllImport("mod_managed", EntryPoint="CSharp_delete_switch_cache_db_core_db_options_t")] + public static extern void delete_switch_cache_db_core_db_options_t(HandleRef jarg1); + + [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_odbc_options_t_dsn_set")] + public static extern void switch_cache_db_odbc_options_t_dsn_set(HandleRef jarg1, string jarg2); + + [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_odbc_options_t_dsn_get")] + public static extern string switch_cache_db_odbc_options_t_dsn_get(HandleRef jarg1); + + [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_odbc_options_t_user_set")] + public static extern void switch_cache_db_odbc_options_t_user_set(HandleRef jarg1, string jarg2); + + [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_odbc_options_t_user_get")] + public static extern string switch_cache_db_odbc_options_t_user_get(HandleRef jarg1); + + [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_odbc_options_t_pass_set")] + public static extern void switch_cache_db_odbc_options_t_pass_set(HandleRef jarg1, string jarg2); + + [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_odbc_options_t_pass_get")] + public static extern string switch_cache_db_odbc_options_t_pass_get(HandleRef jarg1); + + [DllImport("mod_managed", EntryPoint="CSharp_new_switch_cache_db_odbc_options_t")] + public static extern IntPtr new_switch_cache_db_odbc_options_t(); + + [DllImport("mod_managed", EntryPoint="CSharp_delete_switch_cache_db_odbc_options_t")] + public static extern void delete_switch_cache_db_odbc_options_t(HandleRef jarg1); + + [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_connection_options_t_core_db_options_set")] + public static extern void switch_cache_db_connection_options_t_core_db_options_set(HandleRef jarg1, HandleRef jarg2); + + [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_connection_options_t_core_db_options_get")] + public static extern IntPtr switch_cache_db_connection_options_t_core_db_options_get(HandleRef jarg1); + + [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_connection_options_t_odbc_options_set")] + public static extern void switch_cache_db_connection_options_t_odbc_options_set(HandleRef jarg1, HandleRef jarg2); + + [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_connection_options_t_odbc_options_get")] + public static extern IntPtr switch_cache_db_connection_options_t_odbc_options_get(HandleRef jarg1); + + [DllImport("mod_managed", EntryPoint="CSharp_new_switch_cache_db_connection_options_t")] + public static extern IntPtr new_switch_cache_db_connection_options_t(); + + [DllImport("mod_managed", EntryPoint="CSharp_delete_switch_cache_db_connection_options_t")] + public static extern void delete_switch_cache_db_connection_options_t(HandleRef jarg1); + [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_handle_t_name_set")] public static extern void switch_cache_db_handle_t_name_set(HandleRef jarg1, string jarg2); [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_handle_t_name_get")] public static extern string switch_cache_db_handle_t_name_get(HandleRef jarg1); - [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_handle_t_db_set")] - public static extern void switch_cache_db_handle_t_db_set(HandleRef jarg1, HandleRef jarg2); + [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_handle_t_type_set")] + public static extern void switch_cache_db_handle_t_type_set(HandleRef jarg1, int jarg2); - [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_handle_t_db_get")] - public static extern IntPtr switch_cache_db_handle_t_db_get(HandleRef jarg1); + [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_handle_t_type_get")] + public static extern int switch_cache_db_handle_t_type_get(HandleRef jarg1); - [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_handle_t_odbc_dbh_set")] - public static extern void switch_cache_db_handle_t_odbc_dbh_set(HandleRef jarg1, HandleRef jarg2); + [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_handle_t_native_handle_set")] + public static extern void switch_cache_db_handle_t_native_handle_set(HandleRef jarg1, HandleRef jarg2); - [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_handle_t_odbc_dbh_get")] - public static extern IntPtr switch_cache_db_handle_t_odbc_dbh_get(HandleRef jarg1); + [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_handle_t_native_handle_get")] + public static extern IntPtr switch_cache_db_handle_t_native_handle_get(HandleRef jarg1); [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_handle_t_last_used_set")] public static extern void switch_cache_db_handle_t_last_used_set(HandleRef jarg1, HandleRef jarg2); @@ -6899,14 +6994,20 @@ class freeswitchPINVOKE { [DllImport("mod_managed", EntryPoint="CSharp_delete_switch_cache_db_handle_t")] public static extern void delete_switch_cache_db_handle_t(HandleRef jarg1); + [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_type_name")] + public static extern string switch_cache_db_type_name(int jarg1); + [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_release_db_handle")] public static extern void switch_cache_db_release_db_handle(HandleRef jarg1); [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_destroy_db_handle")] public static extern void switch_cache_db_destroy_db_handle(HandleRef jarg1); - [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_get_db_handle")] - public static extern int switch_cache_db_get_db_handle(HandleRef jarg1, string jarg2, string jarg3, string jarg4); + [DllImport("mod_managed", EntryPoint="CSharp__switch_cache_db_get_db_handle")] + public static extern int _switch_cache_db_get_db_handle(HandleRef jarg1, int jarg2, HandleRef jarg3, string jarg4, string jarg5, int jarg6); + + [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_execute_sql2str")] + public static extern string switch_cache_db_execute_sql2str(HandleRef jarg1, string jarg2, string jarg3, uint jarg4, ref string jarg5); [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_execute_sql")] public static extern int switch_cache_db_execute_sql(HandleRef jarg1, string jarg2, ref string jarg3); @@ -6914,8 +7015,8 @@ class freeswitchPINVOKE { [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_execute_sql_callback")] public static extern int switch_cache_db_execute_sql_callback(HandleRef jarg1, string jarg2, HandleRef jarg3, HandleRef jarg4, ref string jarg5); - [DllImport("mod_managed", EntryPoint="CSharp_switch_core_db_handle")] - public static extern int switch_core_db_handle(HandleRef jarg1); + [DllImport("mod_managed", EntryPoint="CSharp__switch_core_db_handle")] + public static extern int _switch_core_db_handle(HandleRef jarg1, string jarg2, string jarg3, int jarg4); [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_test_reactive")] public static extern void switch_cache_db_test_reactive(HandleRef jarg1, string jarg2, string jarg3, string jarg4); @@ -6929,6 +7030,9 @@ class freeswitchPINVOKE { [DllImport("mod_managed", EntryPoint="CSharp_switch_cache_db_detach")] public static extern void switch_cache_db_detach(); + [DllImport("mod_managed", EntryPoint="CSharp_switch_core_debug_level")] + public static extern uint switch_core_debug_level(); + [DllImport("mod_managed", EntryPoint="CSharp_SWITCH_CMD_CHUNK_LEN_get")] public static extern int SWITCH_CMD_CHUNK_LEN_get(); @@ -17763,6 +17867,132 @@ namespace FreeSWITCH.Native { using System; using System.Runtime.InteropServices; +public class switch_cache_db_connection_options_t : IDisposable { + private HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal switch_cache_db_connection_options_t(IntPtr cPtr, bool cMemoryOwn) { + swigCMemOwn = cMemoryOwn; + swigCPtr = new HandleRef(this, cPtr); + } + + internal static HandleRef getCPtr(switch_cache_db_connection_options_t obj) { + return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr; + } + + ~switch_cache_db_connection_options_t() { + Dispose(); + } + + public virtual void Dispose() { + lock(this) { + if(swigCPtr.Handle != IntPtr.Zero && swigCMemOwn) { + swigCMemOwn = false; + freeswitchPINVOKE.delete_switch_cache_db_connection_options_t(swigCPtr); + } + swigCPtr = new HandleRef(null, IntPtr.Zero); + GC.SuppressFinalize(this); + } + } + + public switch_cache_db_core_db_options_t core_db_options { + set { + freeswitchPINVOKE.switch_cache_db_connection_options_t_core_db_options_set(swigCPtr, switch_cache_db_core_db_options_t.getCPtr(value)); + } + get { + IntPtr cPtr = freeswitchPINVOKE.switch_cache_db_connection_options_t_core_db_options_get(swigCPtr); + switch_cache_db_core_db_options_t ret = (cPtr == IntPtr.Zero) ? null : new switch_cache_db_core_db_options_t(cPtr, false); + return ret; + } + } + + public switch_cache_db_odbc_options_t odbc_options { + set { + freeswitchPINVOKE.switch_cache_db_connection_options_t_odbc_options_set(swigCPtr, switch_cache_db_odbc_options_t.getCPtr(value)); + } + get { + IntPtr cPtr = freeswitchPINVOKE.switch_cache_db_connection_options_t_odbc_options_get(swigCPtr); + switch_cache_db_odbc_options_t ret = (cPtr == IntPtr.Zero) ? null : new switch_cache_db_odbc_options_t(cPtr, false); + return ret; + } + } + + public switch_cache_db_connection_options_t() : this(freeswitchPINVOKE.new_switch_cache_db_connection_options_t(), true) { + } + +} + +} +/* ---------------------------------------------------------------------------- + * This file was automatically generated by SWIG (http://www.swig.org). + * Version 1.3.35 + * + * Do not make changes to this file unless you know what you are doing--modify + * the SWIG interface file instead. + * ----------------------------------------------------------------------------- */ + +namespace FreeSWITCH.Native { + +using System; +using System.Runtime.InteropServices; + +public class switch_cache_db_core_db_options_t : IDisposable { + private HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal switch_cache_db_core_db_options_t(IntPtr cPtr, bool cMemoryOwn) { + swigCMemOwn = cMemoryOwn; + swigCPtr = new HandleRef(this, cPtr); + } + + internal static HandleRef getCPtr(switch_cache_db_core_db_options_t obj) { + return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr; + } + + ~switch_cache_db_core_db_options_t() { + Dispose(); + } + + public virtual void Dispose() { + lock(this) { + if(swigCPtr.Handle != IntPtr.Zero && swigCMemOwn) { + swigCMemOwn = false; + freeswitchPINVOKE.delete_switch_cache_db_core_db_options_t(swigCPtr); + } + swigCPtr = new HandleRef(null, IntPtr.Zero); + GC.SuppressFinalize(this); + } + } + + public string db_path { + set { + freeswitchPINVOKE.switch_cache_db_core_db_options_t_db_path_set(swigCPtr, value); + } + get { + string ret = freeswitchPINVOKE.switch_cache_db_core_db_options_t_db_path_get(swigCPtr); + return ret; + } + } + + public switch_cache_db_core_db_options_t() : this(freeswitchPINVOKE.new_switch_cache_db_core_db_options_t(), true) { + } + +} + +} +/* ---------------------------------------------------------------------------- + * This file was automatically generated by SWIG (http://www.swig.org). + * Version 1.3.35 + * + * Do not make changes to this file unless you know what you are doing--modify + * the SWIG interface file instead. + * ----------------------------------------------------------------------------- */ + +namespace FreeSWITCH.Native { + +using System; +using System.Runtime.InteropServices; + public class switch_cache_db_handle_t : IDisposable { private HandleRef swigCPtr; protected bool swigCMemOwn; @@ -17801,24 +18031,23 @@ public class switch_cache_db_handle_t : IDisposable { } } - public SWIGTYPE_p_sqlite3 db { + public switch_cache_db_handle_type_t type { set { - freeswitchPINVOKE.switch_cache_db_handle_t_db_set(swigCPtr, SWIGTYPE_p_sqlite3.getCPtr(value)); + freeswitchPINVOKE.switch_cache_db_handle_t_type_set(swigCPtr, (int)value); } get { - IntPtr cPtr = freeswitchPINVOKE.switch_cache_db_handle_t_db_get(swigCPtr); - SWIGTYPE_p_sqlite3 ret = (cPtr == IntPtr.Zero) ? null : new SWIGTYPE_p_sqlite3(cPtr, false); + switch_cache_db_handle_type_t ret = (switch_cache_db_handle_type_t)freeswitchPINVOKE.switch_cache_db_handle_t_type_get(swigCPtr); return ret; } } - public SWIGTYPE_p_switch_odbc_handle odbc_dbh { + public switch_cache_db_native_handle_t native_handle { set { - freeswitchPINVOKE.switch_cache_db_handle_t_odbc_dbh_set(swigCPtr, SWIGTYPE_p_switch_odbc_handle.getCPtr(value)); + freeswitchPINVOKE.switch_cache_db_handle_t_native_handle_set(swigCPtr, switch_cache_db_native_handle_t.getCPtr(value)); } get { - IntPtr cPtr = freeswitchPINVOKE.switch_cache_db_handle_t_odbc_dbh_get(swigCPtr); - SWIGTYPE_p_switch_odbc_handle ret = (cPtr == IntPtr.Zero) ? null : new SWIGTYPE_p_switch_odbc_handle(cPtr, false); + IntPtr cPtr = freeswitchPINVOKE.switch_cache_db_handle_t_native_handle_get(swigCPtr); + switch_cache_db_native_handle_t ret = (cPtr == IntPtr.Zero) ? null : new switch_cache_db_native_handle_t(cPtr, false); return ret; } } @@ -17883,6 +18112,168 @@ public class switch_cache_db_handle_t : IDisposable { namespace FreeSWITCH.Native { +public enum switch_cache_db_handle_type_t { + SCDB_TYPE_CORE_DB, + SCDB_TYPE_ODBC +} + +} +/* ---------------------------------------------------------------------------- + * This file was automatically generated by SWIG (http://www.swig.org). + * Version 1.3.35 + * + * Do not make changes to this file unless you know what you are doing--modify + * the SWIG interface file instead. + * ----------------------------------------------------------------------------- */ + +namespace FreeSWITCH.Native { + +using System; +using System.Runtime.InteropServices; + +public class switch_cache_db_native_handle_t : IDisposable { + private HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal switch_cache_db_native_handle_t(IntPtr cPtr, bool cMemoryOwn) { + swigCMemOwn = cMemoryOwn; + swigCPtr = new HandleRef(this, cPtr); + } + + internal static HandleRef getCPtr(switch_cache_db_native_handle_t obj) { + return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr; + } + + ~switch_cache_db_native_handle_t() { + Dispose(); + } + + public virtual void Dispose() { + lock(this) { + if(swigCPtr.Handle != IntPtr.Zero && swigCMemOwn) { + swigCMemOwn = false; + freeswitchPINVOKE.delete_switch_cache_db_native_handle_t(swigCPtr); + } + swigCPtr = new HandleRef(null, IntPtr.Zero); + GC.SuppressFinalize(this); + } + } + + public SWIGTYPE_p_sqlite3 core_db_dbh { + set { + freeswitchPINVOKE.switch_cache_db_native_handle_t_core_db_dbh_set(swigCPtr, SWIGTYPE_p_sqlite3.getCPtr(value)); + } + get { + IntPtr cPtr = freeswitchPINVOKE.switch_cache_db_native_handle_t_core_db_dbh_get(swigCPtr); + SWIGTYPE_p_sqlite3 ret = (cPtr == IntPtr.Zero) ? null : new SWIGTYPE_p_sqlite3(cPtr, false); + return ret; + } + } + + public SWIGTYPE_p_switch_odbc_handle odbc_dbh { + set { + freeswitchPINVOKE.switch_cache_db_native_handle_t_odbc_dbh_set(swigCPtr, SWIGTYPE_p_switch_odbc_handle.getCPtr(value)); + } + get { + IntPtr cPtr = freeswitchPINVOKE.switch_cache_db_native_handle_t_odbc_dbh_get(swigCPtr); + SWIGTYPE_p_switch_odbc_handle ret = (cPtr == IntPtr.Zero) ? null : new SWIGTYPE_p_switch_odbc_handle(cPtr, false); + return ret; + } + } + + public switch_cache_db_native_handle_t() : this(freeswitchPINVOKE.new_switch_cache_db_native_handle_t(), true) { + } + +} + +} +/* ---------------------------------------------------------------------------- + * This file was automatically generated by SWIG (http://www.swig.org). + * Version 1.3.35 + * + * Do not make changes to this file unless you know what you are doing--modify + * the SWIG interface file instead. + * ----------------------------------------------------------------------------- */ + +namespace FreeSWITCH.Native { + +using System; +using System.Runtime.InteropServices; + +public class switch_cache_db_odbc_options_t : IDisposable { + private HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal switch_cache_db_odbc_options_t(IntPtr cPtr, bool cMemoryOwn) { + swigCMemOwn = cMemoryOwn; + swigCPtr = new HandleRef(this, cPtr); + } + + internal static HandleRef getCPtr(switch_cache_db_odbc_options_t obj) { + return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr; + } + + ~switch_cache_db_odbc_options_t() { + Dispose(); + } + + public virtual void Dispose() { + lock(this) { + if(swigCPtr.Handle != IntPtr.Zero && swigCMemOwn) { + swigCMemOwn = false; + freeswitchPINVOKE.delete_switch_cache_db_odbc_options_t(swigCPtr); + } + swigCPtr = new HandleRef(null, IntPtr.Zero); + GC.SuppressFinalize(this); + } + } + + public string dsn { + set { + freeswitchPINVOKE.switch_cache_db_odbc_options_t_dsn_set(swigCPtr, value); + } + get { + string ret = freeswitchPINVOKE.switch_cache_db_odbc_options_t_dsn_get(swigCPtr); + return ret; + } + } + + public string user { + set { + freeswitchPINVOKE.switch_cache_db_odbc_options_t_user_set(swigCPtr, value); + } + get { + string ret = freeswitchPINVOKE.switch_cache_db_odbc_options_t_user_get(swigCPtr); + return ret; + } + } + + public string pass { + set { + freeswitchPINVOKE.switch_cache_db_odbc_options_t_pass_set(swigCPtr, value); + } + get { + string ret = freeswitchPINVOKE.switch_cache_db_odbc_options_t_pass_get(swigCPtr); + return ret; + } + } + + public switch_cache_db_odbc_options_t() : this(freeswitchPINVOKE.new_switch_cache_db_odbc_options_t(), true) { + } + +} + +} +/* ---------------------------------------------------------------------------- + * This file was automatically generated by SWIG (http://www.swig.org). + * Version 1.3.35 + * + * Do not make changes to this file unless you know what you are doing--modify + * the SWIG interface file instead. + * ----------------------------------------------------------------------------- */ + +namespace FreeSWITCH.Native { + public enum switch_call_cause_t { SWITCH_CAUSE_NONE = 0, SWITCH_CAUSE_UNALLOCATED_NUMBER = 1, @@ -24003,6 +24394,16 @@ public class switch_loadable_module_function_table_t : IDisposable { namespace FreeSWITCH.Native { public enum switch_log_level_t { + SWITCH_LOG_DEBUG10 = 110, + SWITCH_LOG_DEBUG9 = 109, + SWITCH_LOG_DEBUG8 = 108, + SWITCH_LOG_DEBUG7 = 107, + SWITCH_LOG_DEBUG6 = 106, + SWITCH_LOG_DEBUG5 = 105, + SWITCH_LOG_DEBUG4 = 104, + SWITCH_LOG_DEBUG3 = 103, + SWITCH_LOG_DEBUG2 = 102, + SWITCH_LOG_DEBUG1 = 101, SWITCH_LOG_DEBUG = 7, SWITCH_LOG_INFO = 6, SWITCH_LOG_NOTICE = 5, @@ -24312,7 +24713,8 @@ namespace FreeSWITCH.Native { SMBF_READ_PING = (1 << 4), SMBF_STEREO = (1 << 5), SMBF_ANSWER_REQ = (1 << 6), - SMBF_THREAD_LOCK = (1 << 7) + SMBF_THREAD_LOCK = (1 << 7), + SMBF_PRUNE = (1 << 8) } } @@ -25336,7 +25738,8 @@ public enum switch_session_ctl_t { SCSC_SHUTDOWN_ELEGANT, SCSC_SHUTDOWN_ASAP, SCSC_CANCEL_SHUTDOWN, - SCSC_SEND_SIGHUP + SCSC_SEND_SIGHUP, + SCSC_DEBUG_LEVEL } }