diff --git a/include/python-cellframe.h b/include/python-cellframe.h index b42228df205af1dcd47092f244c6c073ec76ad95..dfb788c9ec007f0f298e5e6ef9b2df2e1ba37138 100644 --- a/include/python-cellframe.h +++ b/include/python-cellframe.h @@ -27,6 +27,7 @@ #include "wrapping_dap_chain_net_state.h" // ============ + #include "wrapping_http.h" #include "wrapping_dap_enc_http.h" #include "wrapping_dap_stream.h" @@ -46,6 +47,8 @@ #include "dap_stream_ch_chain_net.h" #include "dap_stream_ch_chain_net_srv.h" #include "dap_enc_ks.h" +#include "dap_chain_gdb.h" +#include "libdap_chain_net_python.h" #include "dap_common.h" diff --git a/src/python-cellframe.c b/src/python-cellframe.c index a7c07759eced819dd1fc85a567ca8f95df508bca..8a4db5386eb8bc964af2135e852aedb5a8d13a5f 100644 --- a/src/python-cellframe.c +++ b/src/python-cellframe.c @@ -251,6 +251,25 @@ static PyObject *python_cellframe_init(PyObject *self, PyObject *args){ return NULL; } } + if (strcmp(c_value, "Client") == 0){ + if (dap_client_init() != 0){ + PyErr_SetString(CellFrame_error, "Failed to initialize Client module. "); + return NULL; + } + } + if (strcmp(c_value, "GDB") == 0){ + if (dap_chain_gdb_init() != 0){ + PyErr_SetString(CellFrame_error, "Failed to initialize GDB module. "); + return NULL; + } + } + if (strcmp(c_value, "Net") == 0){ + if (dap_chain_net_init_py() != 0 ){ + PyErr_SetString(CellFrame_error, "Failed to initialize chain net module. "); + return NULL; + } + } + // if (strcmp(c_value, "ENC") == 0){ // if (dap_enc_init())