UDP multicasting with Python
Welcome to the next pikoTutorial!
The minimal receiver
import struct
from argparse import ArgumentParser
from socket import socket, AF_INET, SOCK_DGRAM, inet_aton, IPPROTO_IP, \
IP_ADD_MEMBERSHIP, INADDR_ANY, SOL_SOCKET, SO_REUSEADDR
# define com...
pikotutorial.hashnode.dev3 min read