PGM Multicasting using a RDM Socket
server is listening to a multicast address on a socket using the RDM
socket type. Supposedly, this uses PGM(Pragmatic General Multicasting)
for multicasting...
How can I test the reliability of this form of multicasting? I'm
planning on using it in an enterprise environment so I need reliable
multicasting and before we deploy the application I would like to make
sure this form of multicasting is indeed reliable.
All my servers are Windows Server 2003
//create a PGM multicast socket
Socket mySocket =
new Socket(AddressFamily.InterNetwork,SocketType.Rdm, (ProtocolType)113);

