This commit is contained in:
Yunjay Liu
2024-10-25 22:03:45 +08:00
parent 7d70ac8157
commit 809b1b1cd3
35 changed files with 2355 additions and 6 deletions

View File

@@ -0,0 +1,10 @@
# UDPPingerServer.py
from socket import *
########## Begin ##########
serverSocket = socket(AF_INET, SOCK_DGRAM)
serverSocket.bind(("0.0.0.0",12000))
########## End ##########
print( serverSocket)