I have written a C++ application to send/receive UDP message thorough sockets. The application is able to send/receive both multicast and unicast messages.
I want to know, is it OK to use single port for both multicast and unicast messages? OR is it better to have separate ports for unicast and multicast messages?
I am expecting approx 100+ messages per second including both unicast and multicast.