IPv6 UDP Sockets with Python 3
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
|
|
udp_ipv6_server.py
|
|
The code is based on this GitHub gist by tuxmartin. I just made some changes to run it with Python 3.