Skip to content

Instantly share code, notes, and snippets.

View esmaeelE's full-sized avatar
🎯
Focusing

esmaeelE esmaeelE

🎯
Focusing
View GitHub Profile
@esmaeelE
esmaeelE / udp_ipv6_client.py
Created May 25, 2024 10:12 — forked from tuxmartin/udp_ipv6_client.py
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