Get Multicast Dest From Python Socket Recv
For my project, I need some way to know which multicast group a packet was originally sent to when it's received by my client. I've considered maintaining a map of sockets to multi
Solution 1:
You only joined multicast group address "ff02::abcd:1". Therefore, any packet that is received on the socket must have been sent to that multicast address.
Post a Comment for "Get Multicast Dest From Python Socket Recv"