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?
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?
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.