From 6e331e963192abf11f85386576a614070ad728d4 Mon Sep 17 00:00:00 2001 From: Christian Ulrich Date: Fri, 20 Nov 2020 22:14:27 +0100 Subject: [PATCH] go with 1000 ports for now --- port_prediction.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/port_prediction.nim b/port_prediction.nim index 947e564..653102f 100644 --- a/port_prediction.nim +++ b/port_prediction.nim @@ -25,7 +25,7 @@ type minPort*: uint16 maxPort*: uint16 -const RandomPortCount = 10000'u16 +const RandomPortCount = 1000'u16 proc min(a, b: uint16): uint16 = min(a.int32, b.int32).uint16