Tagged Questions

3
votes
2answers
1k views

Writing a reliable, totally-ordered multicast system in Python

I have to write a reliable, totally-ordered multicast system from scratch in Python. I can't use any external libraries. I'm allowed to use a central sequencer. There seems to be two immediate ...
1
vote
1answer
130 views

Duplicate packets in Python multicast receiver

There is a script that opens a socket and read from it the multicast (from Multicast in Python) import socket import struct MCAST_GRP = '224.1.1.1' MCAST_PORT = 1234 sock = ...