Could my issue comes from the fact that the code of that method below is 
commented out ?


void Groupsock::multicastSendOnly() {
  // We disable this code for now, because - on some systems - leaving the 
multicast group seems to cause sent packets
  // to not be received by other applications (at least, on the same host).
#if 0
  socketLeaveGroup(env(), socketNum(), groupAddress(r);
  for (destRecord* dests = fDests; dests != NULL; dests = dests->fNext) {
    socketLeaveGroup(env(), socketNum(), dests->fGroupEId.groupAddress(r);
  }
#endif
}

From: live-devel <[email protected]> On Behalf Of g.jaegy
Sent: Wednesday, January 18, 2023 2:03 PM
To: [email protected] <[email protected]>
Subject: [Live-devel] membership report group

Hi Ross,

That subject is a bit beyond my knowledge, so I would like to apologize for any 
stupid thing I might be saying.

We have a system streaming 54 channels, using a different RTSP server for each 
channel, using 18 PCs in total (so about 3 streams per PC). Transport is using 
multicast.

Currently, we use the same common multicast IP for all the streams (with 
different ports of course).

However, this means that a given "video stream generator" PC receives all the 
packets from all the other channels, causing the network traffic to be 
significant on each of this "video stream generator".

We have been told that this was due to each stream to generate and send IGMPv2 
packets (membership report group).

Since we don't really need each "video stream generator" PC to receive the 
multicast packets generated by the other PC, it seems that we would like to 
avoid these IGMPv2 packets to be sent.

I'm not sure whether this is possible or not. Do you have any idea ? Is it 
possible to configure live555 to not send those IGMPv2 packets ?

Again, sorry if that sounds stupid, but to be honest I'm not completely sure I 
understand exactly what this packets are being used for (and whether we need 
them in order to send multicast packet on a given IP address).

Thanks,
Greg
_______________________________________________
live-devel mailing list
[email protected]
http://lists.live555.com/mailman/listinfo/live-devel

Reply via email to