multicast Questions
17
Solved
after progress on the question how to create socket.io multicast groups, I found making rooms a great way to do what I needed.
However, it would be great to know about all the rooms, without an ex...
4
Solved
I have a code in which send multicast datagrams.
A critical piece of code:
uint32_t port;
int sockfd, err_ip;
const uint32_t sizebuff = 65535 - (20 + 8);
unsigned char *buff = (unsigned char *) ma...
Comptroller asked 6/7, 2010 at 15:54
3
Solved
This question is about sending and receiving multicasts inside the same host, while simultaneously sending it to other hosts.
Even after hours of googling, I have not been able to sort out, how mu...
2
Solved
I have a network with several computers when each computer has several network interfaces with a single destination. I'm developing an application that actively uses multicast. In general everythin...
6
I have two programs:
server ... it generates UDP traffic on a chosen multicast
listener ... it prints UDP traffic on a chosen multicast
(it subscribes to a multicast and prints
whatever it rece...
4
I have a prototype Android app that is listening for multicast packets to 'discover' clients to communicate with. The socket set up is similar to this:
InetAddress group = InetAddress.getByName("2...
Theatrician asked 1/7, 2011 at 16:25
3
I'm trying to send a UDP Multicast Packet to: 230.185.192.108 so everyone subscribed will receive. A bit stuck. I believe it's broadcasting correctly, but can't seem to pick anything up with any cl...
4
Solved
In order to make optimal use of network bandwidth in a communication 1->n I need to use multicast. In an on-premise datacenter with switch having IGMP snooping, the advantage of multicast is obviou...
Bombycid asked 4/11, 2015 at 16:12
1
Solved
I have two applications running on the same Linux host. Each application joins the same multicast group, but each choose to use different NIC. Note that both NICs are managed in the same subnet and...
5
Solved
Getting java.net.SocketException when trying to start a multicast provider:
2013-09-11 11:45:44,204 [main] ERROR net.sf.ehcache.distribution.MulticastRMICacheManagerPeerProvider: Error starting he...
Albright asked 11/9, 2013 at 17:0
0
I have the following setup:
external device that sends multicast UDP messages through ethernet towards a windows 10 PC
The PC has WSL2 running and within an application that is trying to listen to...
Privy asked 3/12, 2021 at 11:18
2
I was trying to write a simple program communicating between kernel and user space using Netlink. Basically here's what I wanted to achieve:
User space program starts binding to a user defined mu...
Farceuse asked 27/3, 2014 at 14:52
4
I'm new to lwip, and I want to create a multicast receiver with lwip. My steps are as follow:
1. Enable LWIP_IGMP;
2. Set NETIF_FLAG_IGMP in low_level_init();
3. Join multicast group, create and bi...
4
Solved
I need to send a broadcast datagram to all machine (servers) connected to my network.
I'm using NodeJS Multicast
Client
var dgram = require('dgram');
var message = new Buffer("Some bytes");
var ...
Tragacanth asked 30/5, 2011 at 14:17
3
Solved
3
Following iOS 14 new policy of blocking access to local network, a com.apple.developer.networking.multicast special entitlement is needed to access the local network, and this access should be conf...
Pentheas asked 11/10, 2020 at 20:16
2
I got spring boot (2.3.2.RELEASE) with camel (3.5.0) application and two routes for testing in it:
The idea is to check what happen when exception occurred in child route that was called from multi...
Modern asked 3/11, 2020 at 12:2
3
I wish to send UDP multicast packets to loopback address and receive the same in other application. All tests done on fedora core 17 Linux.
The idea is to receive a video stream via RTSP/HTTP or a...
Disabuse asked 15/4, 2013 at 3:35
2
Android emulator does not support multicast currently however I need to test an application that needs multicast packets. I want to do it on Emulator.
Is there a way to receive multicast packets o...
Yacov asked 9/5, 2017 at 0:24
6
Is it possible to receive data from more than one multicast group on a single socket?
For example:
void AddGroup(int sock,
const char* mc_addr_str,
int mc_port,
const char* interface) {
struc...
Schaumberger asked 11/2, 2012 at 19:21
4
Solved
On a computer with both an active Wireless Card and a LAN-Port with a crossover cable hooked up to another machine running the same application, we need to send a UDP multicast over the LAN wire to...
2
Solved
I have an Observable that produce the unicast value(individually for all observers). But when i am going to convert into multicast using RxJs multicast operators then it return the following error....
Illyes asked 19/1, 2019 at 7:55
4
Solved
I have several embedded machines listening and streaming rtp audio data to a multicast group. They are connected to a smart managed switch (Netgear GS108Ev2) which does basic igmp snooping and mult...
1
Solved
I'm trying to improve the performance of my multicast application (in order to reduce its packet loss) which is working on a huge network
My experiments show that in the first run of the applicati...
Melissamelisse asked 30/4, 2019 at 7:41
5
Solved
I am receiving ~3000 UDP packets per second, each of them having a size of ~200bytes. I wrote a java application which listens to those UDP packets and just writes the data to a file. Then the serv...
Forward asked 25/11, 2011 at 9:55
1 Next >
© 2022 - 2025 — McMap. All rights reserved.