From b7198b9466a0a54bfe3ea2487abe915aaa5f4c5a Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Sat, 9 Aug 2025 12:57:17 +0800 Subject: [PATCH] change port to 6110 --- src/debugger/dap.c | 2 +- src2/main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/debugger/dap.c b/src/debugger/dap.c index 7e210e27..a2fa919b 100644 --- a/src/debugger/dap.c +++ b/src/debugger/dap.c @@ -314,7 +314,7 @@ void c11_dap_init_server(const char* hostname, unsigned short port) { c11_socket_listen(server.server, 0); printf("[DEBUGGER INFO] : listen on %s:%hu\n", hostname, port); server.toclient = c11_socket_accept(server.server, NULL, NULL); - printf("[DEBUGGER INFO] : connected clinet\n"); + printf("[DEBUGGER INFO] : connected client\n"); } inline static void c11_dap_handle_message() { diff --git a/src2/main.c b/src2/main.c index 6b925a43..8e8de7f7 100644 --- a/src2/main.c +++ b/src2/main.c @@ -91,7 +91,7 @@ int main(int argc, char** argv) { } } else { if(profile) py_profiler_begin(); - if(debug) py_debugger_waitforattach("localhost", 3939); + if(debug) py_debugger_waitforattach("localhost", 6110); char* source = read_file(filename); if(source) {