I have a C Project to implement Multicast in C language, Here server(only one) sends data,and clients receive data sent by server( multiple).
Here The issue is, I want the server to Clients to Multicast Group.
mreq.imr_multiaddr.s_addr = mcastAddr.s_addr;
mreq.imr_interface.s_addr = htonl(INADDR_ANY);
rc = setsockopt(sd, IPPROTO_IP, IP_ADD_MEMBERSHIP,
(void *) &mreq, sizeof(mreq) );
The above thing is used to add client to Multicast group from client side.
Is there a way to add client to group from server? I think getting socket of client and adding it to group doesn't make sense to me, Is it Possible.
Any help appreciated, Thanks in advance.