The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
13 views

message multicasting with different gateways?

Good day, I have 4 Windows server 2008 R2 machines (A,B,C, & D), I am running a multicast test as the 4 machines must receive messages from each other. all machines send messages to the range ...
1
vote
0answers
77 views

MulticastSocket.receive never returns

I am trying to develop a multicast application using java. Here is my code: This is Lamport.Java File: package dsass2; import java.net.*; import java.io.*; public class Lamport { static int ...
0
votes
1answer
73 views

Multicast propagation with daisy chained multi NIC card PCs

Here is the topology under discussion: NIC0 NIC0 NIC0 | | | +-----+-----+ ...
0
votes
0answers
61 views

Android :Multicasting communiction within a group in android

I did the multicasting with some devices which are share same static IP address. But now i want to do multicasting within different groups. How to create different-2 groups with some devices which ...
0
votes
1answer
83 views

Source specific multicasting OS/driver performance

I have a embedded device running Linux 2.6.33 that sends a large amount of multicast data, which is usually the only device of its kind on a LAN. However, in the rare case that there are two or more ...
0
votes
1answer
928 views

C# UDP multicast

I need multicast sender and receiver like the one described here While my multicast sender is desktop app, receivers are PDA devices and use compact framework (Windows CE 5.0). Where should I start ...
0
votes
1answer
36 views

Is multicasting inherent to all ethernet systems?

Is multicasting inherent to every ethernet system? What I am trying to do is send codes via ethernet to many devices (without having to send the same 'message' to each device). I am not familiar ...
0
votes
1answer
992 views

Over OPENVPN - Forwarding of UPnP SSDP Multicast Packets from One Network to

Over OPENVPN - Forwarding of UPnP SSDP Multicast Packets from One Network to Another Network Configuration : (PC-A-Network-A - 192.168.60.X) --Switch(Router) -- Internet (ISP) -- Switch (Router) -- ...
0
votes
1answer
247 views

UDP Multicast the Right Choice?

I have limited Java Socket experience and all of it using TCP. I am trying to learn UDP. I am running a multiple process application that is using UDP multicasting. After some brief research (and my ...
0
votes
1answer
827 views

Multicasting in android

We have enabled multicast streaming in one of our machines using VLC server. We use the following URL for streaming the multicast data. rtp://239.1.2.11:5004 & udp://239.1.2.11:1234 But when we ...
1
vote
2answers
210 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!
0
votes
1answer
386 views

Java Multicast Receive 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
1answer
286 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
267 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 ...
1
vote
2answers
267 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? ...
0
votes
2answers
300 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
3answers
174 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.
1
vote
1answer
351 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 = ...
3
votes
1answer
941 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 ...
1
vote
1answer
1k 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 ...
3
votes
1answer
2k 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; ...
2
votes
3answers
1k 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 ...
9
votes
2answers
6k 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 ...
8
votes
5answers
4k 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 ...
0
votes
1answer
387 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
850 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 ...
1
vote
1answer
965 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 = ...
2
votes
4answers
309 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
5k 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
4answers
278 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 ...
3
votes
2answers
2k 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 ...