👩💻 Join our community of thousands of amazing developers!
Today I wanted to trace the syscalls that are made when using an IPv6 UDP socket. This is one of the reasons I love Python because it enables me to quickly write and test code. I thought this might be useful for some of you: udp_ipv6_client.py 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 #!/usr/bin/env python3 import socket UDP_IP = "::1" # localhost UDP_PORT = 5005 MESSAGE = "Hello, World!...