From 63542e2069bcf3a94c9d011a41589fdf6b06c211 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Fri, 27 Oct 2023 14:29:38 +1100 Subject: [PATCH] chore: remove resolved TODO (#2509) --- rust/connlib/tunnel/src/lib.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/rust/connlib/tunnel/src/lib.rs b/rust/connlib/tunnel/src/lib.rs index deac28059..0ca8ccac4 100644 --- a/rust/connlib/tunnel/src/lib.rs +++ b/rust/connlib/tunnel/src/lib.rs @@ -131,9 +131,7 @@ impl Device { } } -// TODO: We should use newtypes for each kind of Id -/// Tunnel is a wireguard state machine that uses webrtc's ICE channels instead of UDP sockets -/// to communicate between peers. +/// Tunnel is a wireguard state machine that uses webrtc's ICE channels instead of UDP sockets to communicate between peers. pub struct Tunnel { next_index: Mutex, // We use a tokio Mutex here since this is only read/write during config so there's no relevant performance impact