Tagged Questions
2
votes
3answers
446 views
How to Send a structure using sendto()
I have created structure :
struct buffer
{
string ProjectName ;
string ProjectID ;
}
buffer buf;
buf.ProjectID = "212";
buf.ProjectName = "MyProj";
Now to send this structure using sendto ...
2
votes
4answers
241 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 multicasting works" and ...
1
vote
2answers
127 views
multicast basics - lost data
Is it a basic principle on reading multicast data that if your application doesn't process
the next datagram that's come in before another one comes in that the first one is essentially
overwritten? ...
1
vote
4answers
194 views
Is it possible to start a custom thread in an IIS hosted C++ application?
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 boost.thread which clearly ...
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 ...