Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BEP-0005 - fix typo and dead link #106

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions beps/bep_0005.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="Docutils 0.15.2: http://docutils.sourceforge.net/" />
<meta name="generator" content="Docutils 0.16: http://docutils.sourceforge.net/" />
<title>bep_0005.rst_post</title>
<meta name="author" content="Andrew Loewenstern &lt;drue&#64;bittorrent.com&gt;, Arvid Norberg &lt;arvid&#64;bittorrent.com&gt;" />
<link rel="stylesheet" href="../css/bep.css" type="text/css" />
Expand Down Expand Up @@ -38,8 +38,8 @@ <h1><a href="../index.html">BitTorrent<span>.org</span></a></h1>
<tr class="title field"><th class="docinfo-name">Title:</th><td class="field-body">DHT Protocol</td>
</tr>
<tr><th class="docinfo-name">Version:</th>
<td>aa944d9e2faf989cbb4b1bad5ec130b9f22631d9</td></tr>
<tr class="last-modified field"><th class="docinfo-name">Last-Modified:</th><td class="field-body">Tue Jan 21 15:59:05 2020 -0800</td>
<td>a6b520edb1d26bb034bc6249c47e3d8c67c10ba9</td></tr>
<tr class="last-modified field"><th class="docinfo-name">Last-Modified:</th><td class="field-body">Thu Feb 13 18:33:05 2020 +0100</td>
</tr>
<tr><th class="docinfo-name">Author:</th>
<td>Andrew Loewenstern &lt;<a class="reference external" href="mailto:drue&#37;&#52;&#48;bittorrent&#46;com">drue<span>&#64;</span>bittorrent<span>&#46;</span>com</a>&gt;, Arvid Norberg &lt;<a class="reference external" href="mailto:arvid&#37;&#52;&#48;bittorrent&#46;com">arvid<span>&#64;</span>bittorrent<span>&#46;</span>com</a>&gt;</td></tr>
Expand All @@ -55,7 +55,7 @@ <h1><a href="../index.html">BitTorrent<span>.org</span></a></h1>
</table>
<p>BitTorrent uses a &quot;distributed sloppy hash table&quot; (DHT) for storing
peer contact information for &quot;trackerless&quot; torrents. In effect, each
peer becomes a tracker. The protocol is based on Kademila <a class="footnote-reference" href="#kademlia" id="id1">[1]</a> and is
peer becomes a tracker. The protocol is based on Kademlia <a class="footnote-reference" href="#kademlia" id="id1">[1]</a> and is
implemented over UDP.</p>
<p>Please note the terminology used in this document to avoid
confusion. A &quot;peer&quot; is a client/server listening on a TCP port that
Expand Down Expand Up @@ -411,7 +411,7 @@ <h1>References</h1>
<table class="docutils footnote" frame="void" id="kademlia" rules="none">
<colgroup><col class="label" /><col /></colgroup>
<tbody valign="top">
<tr><td class="label"><a class="fn-backref" href="#id1">[1]</a></td><td>Peter Maymounkov, David Mazieres, &quot;Kademlia: A Peer-to-peer Information System Based on the XOR Metric&quot;, <em>IPTPS 2002</em>. <a class="reference external" href="http://www.cs.rice.edu/Conferences/IPTPS02/109.pdf">http://www.cs.rice.edu/Conferences/IPTPS02/109.pdf</a></td></tr>
<tr><td class="label"><a class="fn-backref" href="#id1">[1]</a></td><td>Peter Maymounkov, David Mazieres, &quot;Kademlia: A Peer-to-peer Information System Based on the XOR Metric&quot;, <a class="reference external" href="https://pdos.csail.mit.edu/~petar/papers/maymounkov-kademlia-lncs.pdf">https://pdos.csail.mit.edu/~petar/papers/maymounkov-kademlia-lncs.pdf</a></td></tr>
</tbody>
</table>
<table class="docutils footnote" frame="void" id="entropy" rules="none">
Expand Down
4 changes: 2 additions & 2 deletions beps/bep_0005.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

BitTorrent uses a "distributed sloppy hash table" (DHT) for storing
peer contact information for "trackerless" torrents. In effect, each
peer becomes a tracker. The protocol is based on Kademila [#Kademlia]_ and is
peer becomes a tracker. The protocol is based on Kademlia [#Kademlia]_ and is
implemented over UDP.

Please note the terminology used in this document to avoid
Expand Down Expand Up @@ -416,7 +416,7 @@ Example Packets:
References
==========

.. [#Kademlia] Peter Maymounkov, David Mazieres, "Kademlia: A Peer-to-peer Information System Based on the XOR Metric", *IPTPS 2002*. http://www.cs.rice.edu/Conferences/IPTPS02/109.pdf
.. [#Kademlia] Peter Maymounkov, David Mazieres, "Kademlia: A Peer-to-peer Information System Based on the XOR Metric", https://pdos.csail.mit.edu/~petar/papers/maymounkov-kademlia-lncs.pdf

.. [#entropy] Use SHA1 and plenty of entropy to ensure a unique ID.

Expand Down