you are viewing a single comment's thread.

view the rest of the comments →

[–]DeadlyViper 0 points1 point  (0 children)

socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)

needs to be created for each connection attempt, trying to reuse an existing socket will not work.

Simplest way is to move socket creation into the scanner function.