when we create a new torrent file and use any of the public bittorrent tracker available, how tracker will come to know that the torrent is been used its tracker url?

link|improve this question

57% accept rate
feedback

closed as off topic by Mark, tvanfosson, CodeInChaos, martin clayton, ChrisF Dec 24 '11 at 15:08

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

The tracker doesn't need to care. Each torrent has a unique ID (its info hash), and this ID is transmitted by the client when it contacts the tracker. Then the tracker returns other clients which reported the same info hash.

Thus the tracker doesn't need to know about the content of the torrent file or any other meta data. It just needs to tell clients about other clients with the same info_hash.

http://some.tracker.com:999/announce
?info_hash=12345678901234567890 <= Everybody with the same value here is downloading the same torrent
&peer_id=ABCDEFGHIJKLMNOPQRST
&ip=255.255.255.255
&port=6881
&downloaded=1234
&left=98765
&event=stopped

Example request from http://wiki.theory.org/BitTorrent_Tracker_Protocol

link|improve this answer
what i am trying to say that what if newly created torrent by the seeder add the tracker called tracker.example.com:port/announce. My question is How tracker will add the content into db so that the other peer when contact it retrieves the peer ip address and their status of the downloading. Inorder get information from tracker , the tracker schould store the information about the current torrent info hash value. How it is done?,whether i am correct or not i think client sends the information to the tracker that new torrent is been created and tracker will store the seeder address. – abhijeet Dec 24 '11 at 16:48
feedback

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