Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want write a code to get the available bandwidth. Using one of the algorithm.ex.spruce / pathload.

I wanted to a code in C++ in Windows. I have got linux code . But i wanted a Windows based code , which can get me up and down bandwidth.

share|improve this question
Ehm, in C++? What API? Win32? MFC? .NET? – EboMike Nov 25 '10 at 4:54
good question +1 – Spender Jan 8 '11 at 3:03

1 Answer

Bandwidth for what resource? If this is a network resource there isn't anything in any language or the OS that will give you any real estimation of bandwidth. You would need to call out to something at the other end of the link you need to traverse and get an estimation of bandwidth at that point in time.

Or better said... You would need to call a file on a web server to test the download speed of someone's home Internet connection. Keep in mind that the numbers obtained are only accurate for that point in time though. As the bandwidth on any resource can be higher or lower when you actually use them since external factors always affect bandwidth (other prorcesses, users, etc.)

Why do you need the bandwidth and for what resource?

share|improve this answer
1  
I want code in windows C++ – vishal Nov 25 '10 at 11:04
Code for what? You didn't answer my base question of "for what?" at all. Bandwidth is just the measure of how muc data can be transferred between two objects over a given path. That could be for I/O, Network, RAM, etc... – Frazell Thomas Nov 26 '10 at 5:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.