Guest User

Untitled

a guest
Jan 17th, 2020
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. import socket
  2. sockets = []
  3. while True:
  4.     s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  5.     s.connect(('...',80))  
  6.     sockets += [s]
Advertisement
Add Comment
Please, Sign In to add comment