From b07e09c94fcbfdd55a279567fe45728ae4277beb Mon Sep 17 00:00:00 2001 From: Daniel Date: Wed, 8 May 2024 14:19:10 +0200 Subject: [PATCH] Add helpful comment about lookup tries --- service/network/state/lookup.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/network/state/lookup.go b/service/network/state/lookup.go index 39f3d2d9..f534e2c1 100644 --- a/service/network/state/lookup.go +++ b/service/network/state/lookup.go @@ -30,7 +30,7 @@ var ( const ( lookupTries = 5 - fastLookupTries = 2 + fastLookupTries = 2 // 1. current table, 2. get table with max 10ms, could be 0ms, 3. 10ms wait ) // Lookup looks for the given connection in the system state tables and returns the PID of the associated process and whether the connection is inbound.