From 5781d6a312db5389a089abac127339a9ff5de696 Mon Sep 17 00:00:00 2001 From: PancakeTAS Date: Sat, 13 Jun 2026 14:47:53 +0200 Subject: feat: Implement peer-to-peer(ish) socket handshake This isn't entirely "peer-to-peer", because one side requires a publicly accessible port. The primary usecase for this is to establish connections to an endpoint, when there are several non-deterministic paths available on the client side. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index d666efb..750d7b6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,6 +8,7 @@ project(mpu include(cmake/Diagnostics.cmake) add_executable(mpu + "src/p2p.c" "src/main.c") set_target_properties(mpu PROPERTIES -- cgit v1.3.1