From 8d4271ba3c1a17965023222cb1c0ded378165d38 Mon Sep 17 00:00:00 2001 From: Tiffany Date: Sun, 5 Nov 2023 00:54:06 -0400 Subject: [PATCH] Change wording in comment on line 26 --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index b444c5b..368ce55 100644 --- a/main.py +++ b/main.py @@ -23,7 +23,7 @@ W = '\033[0m' # Instead of using SOCK_STREAM for TCP connections # using SOCK_DGRAM for UDP connections to keep packets small # If iterating on this, will use SOCK_STREAM to send bigger packets if I actually understand -# what that means for the network being scanned +# what that means for the network being hit sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)