Amit
Amit

Reputation: 13384

Is there any Algorithm, To find the available bandwidth between two peers on Internet?

I am trying to develop a program which displays the available bandwidth between two peers. Later this module will be integrated in my application which facilitates various user interactions (chatting, desktop sharing etc) using P2P architecture.

Somewhere I read about Spruce algorithm to find the current available bandwidth between two peers, but I am not sure whether that can be used or not.

Is there any already developed algorithm to achieve this ? Plz remember the architecture is P2P.

this seemed an easier problem when I started working on it, but now I realize it is alot tougher than it looks,.... So I need the help of experienced and enthusiastic network programmers......

thanks in advance..

Upvotes: 0

Views: 330

Answers (2)

Bhaskar
Bhaskar

Reputation: 2733

I found this thread on Stackoverflow that is somewhat similar to your question.

Calculating available bandwidth

Hopefully, you'll find an answer there.

Upvotes: 1

corsiKa
corsiKa

Reputation: 82579

I can think of one.

Send a file and time it. There's your approximate available bandwidth. Need a better approximation? Send a bigger file.

Upvotes: 1

Related Questions