Last active
May 25, 2024 10:12
-
-
Save tuxmartin/e64d2132061ffef7e031 to your computer and use it in GitHub Desktop.
Python UDP IPv6 client & server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import socket | |
UDP_IP = "::1" # localhost | |
UDP_PORT = 5005 | |
MESSAGE = "Hello, World!" | |
print "UDP target IP:", UDP_IP | |
print "UDP target port:", UDP_PORT | |
print "message:", MESSAGE | |
sock = socket.socket(socket.AF_INET6, # Internet | |
socket.SOCK_DGRAM) # UDP | |
sock.sendto(MESSAGE, (UDP_IP, UDP_PORT)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import socket | |
UDP_IP = "::" # = 0.0.0.0 u IPv4 | |
UDP_PORT = 5005 | |
sock = socket.socket(socket.AF_INET6, # Internet | |
socket.SOCK_DGRAM) # UDP | |
sock.bind((UDP_IP, UDP_PORT)) | |
while True: | |
data, addr = sock.recvfrom(1024) # buffer size is 1024 bytes | |
print "received message:", data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment