Skip to content

Instantly share code, notes, and snippets.

View 49e94b8f256530dc0d41f740dfe8a4c1's full-sized avatar
🎯
Focusing

azerty 49e94b8f256530dc0d41f740dfe8a4c1

🎯
Focusing
View GitHub Profile
@tuxmartin
tuxmartin / udp_ipv6_client.py
Last active April 8, 2024 15:01
Python UDP IPv6 client & server
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