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
582 views

receive multicast from specific network interface on Linux

I'm trying to receive a multicast data from specific network interface on CentOS 5.5 sd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP); memset(&addr, 0, sizeof(addr)); addr.sin_family = AF_INET; ...
1
vote
1answer
672 views

multicast ip address - blocked in call to recvfrom

i am writing a simple multicast application. i intend to run it on localhost. i have done the following: char *maddr; . . . sendfd = socket(...); struct sockaddr_in sasend; sasend.sin_family = ...
0
votes
1answer
65 views

Nack Oriented Reliable Multicast (NORM) Problem

I have a question about "Nack Oriented Reliable Multicast" (NORM). Sometimes The receiver segfaults with the following stacktrace: 2011/08/16 11:38:55 - signals.cpp:73: Segmentation Fault! 2011/08/16 ...
0
votes
1answer
543 views

multicasting on linux

i am testing a simple multicast application on linux. i got it working on my pc by doing the following: disabling the firewall running the command route add -net 224.0.0.0 netmask 240.0.0.0 dev eth0 ...