able to recieve packets
This commit is contained in:
@@ -1 +1,11 @@
|
|||||||
print("hello World")
|
import socket
|
||||||
|
|
||||||
|
UDP_IP = "127.0.0.1"
|
||||||
|
UDP_PORT = 4444
|
||||||
|
|
||||||
|
sock = socket.socket(socket.AF_INET,socket.SOCK_DGRAM)
|
||||||
|
sock.bind((UDP_IP,UDP_PORT))
|
||||||
|
|
||||||
|
while True:
|
||||||
|
data, addr = sock.recvfrom(1024)
|
||||||
|
print("received mesage: %s" % data)
|
||||||
Reference in New Issue
Block a user