From f967c92cbec5def09a3348fd5276355b842596db Mon Sep 17 00:00:00 2001 From: Maple Date: Sat, 31 Jan 2026 17:14:40 +0100 Subject: [PATCH] make v1 proxies actually run --- prudpv1/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prudpv1/src/lib.rs b/prudpv1/src/lib.rs index 40a46c7..0660a4b 100644 --- a/prudpv1/src/lib.rs +++ b/prudpv1/src/lib.rs @@ -4,11 +4,11 @@ cfg_if::cfg_if! { pub mod executables; pub mod prudp; pub async fn start_secure(param: ProxyStartupParam) { - executables::proxy_secure::start(); + executables::proxy_secure::start().await; } pub async fn start_insecure(param: ProxyStartupParam) { - executables::proxy_insecure::start(); + executables::proxy_insecure::start().await; } } }