Skip to content

Commit 65cb9ac

Browse files
committed
Changes required for handshake pattern
1 parent a0ab320 commit 65cb9ac

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

include/xeus-python/xdebugger.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ namespace xpyt
4141
using base_type = xeus::xdebugger_base;
4242

4343
debugger(xeus::xcontext& context,
44-
const xeus::xconfiguration& config,
44+
const xeus::xkernel_configuration& config,
4545
const std::string& user_name,
4646
const std::string& session_id,
4747
const nl::json& debugger_config);
@@ -76,7 +76,7 @@ namespace xpyt
7676

7777
XEUS_PYTHON_API
7878
std::unique_ptr<xeus::xdebugger> make_python_debugger(xeus::xcontext& context,
79-
const xeus::xconfiguration& config,
79+
const xeus::xkernel_configuration& config,
8080
const std::string& user_name,
8181
const std::string& session_id,
8282
const nl::json& debugger_config);

src/xdebugger.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ using namespace std::placeholders;
4343
namespace xpyt
4444
{
4545
debugger::debugger(xeus::xcontext& context,
46-
const xeus::xconfiguration& config,
46+
const xeus::xkernel_configuration& config,
4747
const std::string& user_name,
4848
const std::string& session_id,
4949
const nl::json& debugger_config)
@@ -363,7 +363,7 @@ namespace xpyt
363363
}
364364

365365
std::unique_ptr<xeus::xdebugger> make_python_debugger(xeus::xcontext& context,
366-
const xeus::xconfiguration& config,
366+
const xeus::xkernel_configuration& config,
367367
const std::string& user_name,
368368
const std::string& session_id,
369369
const nl::json& debugger_config)

src/xdebugpy_client.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace nl = nlohmann;
2020
namespace xpyt
2121
{
2222
xdebugpy_client::xdebugpy_client(xeus::xcontext& context,
23-
const xeus::xconfiguration& config,
23+
const xeus::xkernel_configuration& config,
2424
int socket_linger,
2525
const xdap_tcp_configuration& dap_config,
2626
const event_callback& cb)

src/xdebugpy_client.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ namespace xpyt
2626
using event_callback = base_type::event_callback;
2727

2828
xdebugpy_client(xeus::xcontext& context,
29-
const xeus::xconfiguration& config,
29+
const xeus::xkernel_configuration& config,
3030
int socket_linger,
3131
const xdap_tcp_configuration& dap_config,
3232
const event_callback& cb);

0 commit comments

Comments
 (0)