Speedlimit with .NET sockets

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does anyone knows if and how it is possible to limit the speed of a
connection to some kBytes / s?
 
Basically network traffic limiting is made in the LSP ( Layered Socket
Provider ). More advanced programs use device drivers for that...

So no .NET here.

AFAIK you can develop an LSP or device driver endpoint ( unmanaged ) and
control endpoint ( managed ).

If you will consider device driver solution - there are already sample
drivers that can nearly satisfy your needs...
 
Thanks! I hoped it would be a much easier task to do. I don't know anything
about a Layerd Socket Provider but I guess I'll find out.
 
Back
Top