From 8b3c67ce71024830c1b69aee6346d17b4f709459 Mon Sep 17 00:00:00 2001
From: "alexey.stratulat" <alexey.stratulat@demlabs.net>
Date: Sat, 21 Dec 2019 00:12:23 +0700
Subject: [PATCH] [+] Added initialize dap_chain_gdb and dap_chain_net

---
 include/python-cellframe.h |  3 +++
 src/python-cellframe.c     | 19 +++++++++++++++++++
 2 files changed, 22 insertions(+)

diff --git a/include/python-cellframe.h b/include/python-cellframe.h
index b42228df..dfb788c9 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 a7c07759..8a4db538 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())
-- 
GitLab