mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-07-04 20:56:00 +08:00
11 lines
220 B
Python
11 lines
220 B
Python
import socket
|
|
s = socket.socket()
|
|
host = socket.gethostname()
|
|
port = 8020
|
|
s.bind((host, port))
|
|
s.listen(5)
|
|
while True:
|
|
client, addr = s.accept()
|
|
print(addr)
|
|
client.send("A".encode("utf-8"))
|
|
client.close() |