0

I plan to use C# to implement the bandwidth control system.

I need to implement the system that can allow the system user to set a bandwidth rate to the computer user.

How can I do that?

jgauffin
  • 99,844
  • 45
  • 235
  • 372
jae33
  • 85
  • 1
  • 2
  • 9
  • For your application or for ALL applications? – jgauffin May 06 '11 at 08:37
  • Seems like it's for the whole computer, we need more detail about this. Maybe you can edit your question and add more details for us to point you in the right direction. – Vincent B. May 06 '11 at 08:38

1 Answers1

1

Maybe you can begin to have a look at the following question: Limit Bandwidth Speeds

You might also consider having a look at TokenBucket and LeakyBucket implementations, as well as some Rate Limiting concept, for you to implement your own system.

Community
  • 1
  • 1
Vincent B.
  • 524
  • 3
  • 15