Reputation: 4735
I want to block a windows port using C# or any other way i.e it should not be used by others until i release the block how to do it. Is there any free s/w available to block a port (tcp,udp etc). Please help me to solve this
Upvotes: 3
Views: 2329
Reputation: 63173
If you bind to this port, nobody else can bind to it. That's the only way to block others.
Upvotes: 2