diff --git a/CMakeLists.txt b/CMakeLists.txt index 59275e8ace2f3efac335212f9dc93aa42ab92fa6..7b54eeb89b9e53739752606784b5690a83746f3e 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 bb2825f69641cfde697f069601fcd0f95bfd1ab7..4eb4cd656fa45784368011f4ce62c4f3ebe81aef 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); }