Add comments on lines 28 and 29, a TODO on line 31
This commit is contained in:
parent
3659a1c9ef
commit
10cffeef54
1 changed files with 4 additions and 0 deletions
4
main.py
4
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)
|
||||
|
|
Loading…
Reference in a new issue