From 10cffeef54268ae9ee95cd9ea1fdd309d614997c Mon Sep 17 00:00:00 2001 From: Tiffany Date: Sun, 5 Nov 2023 01:04:49 -0400 Subject: [PATCH] Add comments on lines 28 and 29, a TODO on line 31 --- main.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.py b/main.py index e176f6e..b4fcbc8 100644 --- a/main.py +++ b/main.py @@ -25,6 +25,10 @@ W = '\033[0m' # If iterating on this, will use SOCK_STREAM to send bigger packets if I actually understand # what that means for the network being hit +# Is there enough precedent with ipv6 addresses to use socket.AF_INET6? +# How would that work? + +# TODO: research ipv6 sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)