Tagged Questions
1
vote
1answer
68 views
BitTorrent protocol implementation: Not receiving “Piece” messages
I've implemented most of the BitTorrent protocol in Java. The problem is that for some reason none of the peers are sending me any of the pieces I request. (After 3 hours I received only 2 ...
0
votes
1answer
60 views
What does the 'key' field in a bitorrent query mean?
I used utorrent 2.04(build 22450) and I curious about the key part in the HTTP GET query utorrent generated.I have read the specification for bitorrent protocol and still can't found the meaning for ...
0
votes
1answer
149 views
Torrent file protocol - custom field
I am wondering if there is any available field in the .torrent files that could be used for some custom functionality in someone's implementation of a torrent client? For example, one might want to ...
1
vote
1answer
129 views
Bittorrent MDHT responses
What does the 'v' key value correspond to in Bittorrent Mainline DHT (MDHT) responses?
Here's an example buncoded response:
{'y': b'r',
'r': {'id': ...
7
votes
2answers
627 views
What is the optimal number of nodes in a BitTorrent swarm?
What is the optimal number of nodes in a BitTorrent swarm? I think that there is a mathematical way to express the most efficient number of nodes. To be honest I have a problem with just having an ...
0
votes
2answers
254 views
Why is Bittorrent protocol so popular [closed]
I was wondering what made this protocol so useful as opposed to the other available protocols.
For example, Gnutella is not used at all anymore (according to my limited knowledge) while more and more ...
2
votes
1answer
983 views
How to send a text message to a PC whose IP address I know?
I know this is a weird question, but I would like to know if there is a way to send a text message to a PC whose IP address I know.
For instance, I am downloading a file through torrent from a PC on ...
1
vote
4answers
375 views
General information on trackerless bittorrent such as BitTorrent's Mainline DHT
I'm curious as to how trackerless torrents work. I tried to search for information (presentations or something) about the DHT torrent protocol but couldn't find any valuable resources.
Could someone ...
2
votes
2answers
1k views
Can someone explain what a wire-level protocol is?
I am not very clear about the idea of wire-level protocols. I heard BitTorrent uses it and read that a wirelevel protocol can be considered an opposite of API. I read RMI calls can be considered ...
4
votes
1answer
150 views
Bittorrent: Where do IP addresses come into picture?
I am reading about the Bittorrent protocol and couldn't find this mentioned on the Wiki page. I could understand the role of trackers and publishers but from a practical perspective, I tried ...
3
votes
3answers
917 views
How do torrents work?
Can anyone explain to me or find me an article online, explaining in technical details how torrents work, which technology is used in creating?
21
votes
7answers
7k views
Implementing Bittorrent Protocol
I am looking for a tutorial/blog post on how to implement bittorrent protocol step by step.
How it works? How do you make requests to peers? and talk to trackers.
I do not mind the programming ...
1
vote
5answers
255 views
Does BitTorrent support partial transfers?
Can the BitTorrent protocol specify wanting the first 3% or first 5% of the file first? If not, would adding such support be an improvement to the protocol?
Update: so i guess, if it is part of the ...