reamenagement

This commit is contained in:
Nathan-rek
2024-11-20 16:39:17 +01:00
parent e02d1d0bba
commit 12a249e478
142 changed files with 18858 additions and 18858 deletions

View File

@@ -0,0 +1,8 @@
import socket
import sys
# Create a TCP/IP socket
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
# Connect the socket to the port where the server is listening
server_address = ('192.168.0.1', 81)
print(sys.stderr, 'connecting to %s port %s' % server_address)
sock.connect(server_address)