Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
5answers
2k views

MultiCast Messages to multiple clients on the same machine

Im trying to write a server/service that broadcasts a message on the lan ever second or so, Kind of like a service discovery. The message needs to be received by multiple client programs that ...
3
votes
2answers
2k views

UDP Multicast over the internet?

I'm not sure how best to approach my problem. I have a service with runs on a remote machine with receives and process UDP packets. I want the service to be able to re-send these packets to anyone ...
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 ...
2
votes
3answers
441 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 ...
2
votes
2answers
3k 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 UDP protocol with C ...
1
vote
1answer
28 views

Use of Broadcasting and Multicasting in IPTV

I need some text about use of Broadcasting in IPTV, I have lots of text about Multicasting in IPTV in some PDF's, but nothing about Broadcasting. Please help!
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
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 = ...
1
vote
1answer
581 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
671 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 = ...
1
vote
4answers
193 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
77 views

Java Multicast Recieve Data and Parallel Processing

I am writing a class in Java to simplify the process of connecting to, joining, sending, and receiving data from a multicast group. Please have a look at the sample below before I describe my ...
0
votes
0answers
38 views

Ehcache - MulticastRMICacheManagerPeerProvider - Unable to lookup remote cache peer

I'm trying to find an issue with ehcache (1.5.0 - can't change the version), which is running on machines with multiple network interfaces (to say eth0, eth1, eth2, eth3), using RMI replicated ...
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
0answers
99 views

Multicasting Problem

I am programming a multicast environment scenario. The source is sending the content to a multicast address say 239.0.1.1. on the other end a client wants to join this multicast address. The actual ...
0
votes
2answers
55 views

How to create more than one .local address pointing to my mac

I currently have one .local address (Bonjour) pointing to my mac in my intranet, mbp.local, configured in system preferences with the computer name. I use this to send my boss links to demos on my ...
0
votes
2answers
66 views

Create a multicast router

How can i make my laptop to act as a multicast router. I need to stream video content to other computers with in same network. How can i make my laptop to work as a multicast router.
0
votes
1answer
196 views

Reliable multicasting in Java

What are modern approaches for Reliable multicasting in Java world? Searching the Web, I've came up with JGroups and JRMS. JGroups seem to be an overkill in my situation (I want to have a set of ...
0
votes
1answer
651 views

Does iPhone supports multicasting and broadcasting?

Does iPhone supports multicasting and broadcasting? iPhone is the client and i have server running desktop (Mac/Windows) machine. Since the Windows does not mandatorily supports Bonjour, I ll have to ...
0
votes
1answer
301 views

Could not be performed exception using a socket to do a UDP Multicast

When running a C# app I created on XP it runs just fine, but under Windows 7, I get the following error: "An operation on a socket could not be performed because the system lacked sufficient buffer ...
0
votes
1answer
541 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 ...