From a58336ccc97d38e1f6011a91d2e6555b0eccdd1e Mon Sep 17 00:00:00 2001 From: Roman Khlopkov <roman.khlopkov@demlabs.net> Date: Thu, 24 Sep 2020 19:49:08 +0300 Subject: [PATCH] [*] ES UDP server debugged --- CMakeLists.txt | 2 -- modules/dap-sdk/net/core/src/libdap-server-core-python.c | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 59275e8a..7b54eeb8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -70,7 +70,6 @@ target_compile_options(dap_stream PRIVATE "-fpic" ) target_compile_options(dap_stream_ch PRIVATE "-fpic" ) target_compile_options(dap_stream_ch_chain_net PRIVATE "-fpic" ) target_compile_options(dap_stream_ch_chain PRIVATE "-fpic" ) -target_compile_options(dap_udp_server PRIVATE "-fpic" ) target_compile_options(dap_chain_net_srv PRIVATE "-fpic" ) if(NOT WIN32) target_compile_options(dap_chain_net_srv_vpn PRIVATE "-fpic" ) @@ -145,7 +144,6 @@ target_compile_options(dap_stream PRIVATE "-fpic" ) target_compile_options(dap_stream_ch PRIVATE "-fpic" ) target_compile_options(dap_stream_ch_chain_net PRIVATE "-fpic" ) target_compile_options(dap_stream_ch_chain PRIVATE "-fpic" ) -target_compile_options(dap_udp_server PRIVATE "-fpic" ) target_compile_options(dap_chain_net_srv PRIVATE "-fpic" ) if (NOT WIN32) target_compile_options(dap_chain_net_srv_vpn PRIVATE "-fpic" ) diff --git a/modules/dap-sdk/net/core/src/libdap-server-core-python.c b/modules/dap-sdk/net/core/src/libdap-server-core-python.c index bb2825f6..4eb4cd65 100644 --- a/modules/dap-sdk/net/core/src/libdap-server-core-python.c +++ b/modules/dap-sdk/net/core/src/libdap-server-core-python.c @@ -27,6 +27,6 @@ PyObject *dap_server_core_listen(PyObject *self, PyObject *args){ if (type > 1) return NULL; PyObject *obj = _PyObject_New(&dapServer_dapServerType); - ((PyDapServerObject*)obj)->t_server = dap_server_new(((PyDapEventsObject*)events)->t_events, addr, port, type); + ((PyDapServerObject*)obj)->t_server = dap_server_new(((PyDapEventsObject*)events)->t_events, addr, port, type, NULL); return Py_BuildValue("O", obj); } -- GitLab