0
votes
1answer
68 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 netmas …
1
vote
1answer
46 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;
sase …
1
vote
2answers
473 views
Objective-C - Determining IP address of iPod touch programmatically
I'm programming in objective-C for several iPod devices and I was wondering about something. I'm developing an application that utilizes the server-client model and I'm using the U …
2
votes
3answers
87 views
As a developer, do I need to fully understand multicasting protocols such as IGMP, PIM-DM and PIM-SM?
We utilise multicasting in our application to efficiently broadcast updates to clients connected to middle-tier(s). I'm continually asked by network engineers about "how our multi …
3
votes
2answers
616 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 …
1
vote
4answers
78 views
Is it possible to start a custom thread in an IIS hosted C++ application?
Hi all
We host a C++ based WebServices application in IIS and we're finding that when we try to start our own C++ threads IIS has a fit and crashes. The threads are based on boos …
