This might sound stupid. Pardon my limited knowledge in these stuff.
Is it possible to listen to multiple multicast groups, or more precisely, a range of addresses, for e.g. 224.128.*.*
? Usually these are denoted with CIDR network mask as /16
for example.
Presently I am binding my socket to a particular address as :
sock.bind((ip, port))
. But I would need to work with a range of addresses.
I am pretty much sure it is not possible. Just want to confirm.
Thanks