Hi Guys,

I am using Socket for UDP communication in C#. My application send receive data using Socket. While sending data, I am sending data on same port where I am receiving it, Other server listen that port and pulls data. So I want to make sure data sent to port is not received by my receiver. How can I block data received from same machine.

I am thinking of using BlockSource option under SetSocketOption but I am...