Skip to content

Commit

Permalink
regenerate html
Browse files Browse the repository at this point in the history
  • Loading branch information
arvidn committed Feb 28, 2016
1 parent ca54dc0 commit b342192
Show file tree
Hide file tree
Showing 31 changed files with 241 additions and 268 deletions.
2 changes: 1 addition & 1 deletion docs/building.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ <h1 class="title">libtorrent manual</h1>
<tr><th class="docinfo-name">Author:</th>
<td>Arvid Norberg, <a class="last reference external" href="mailto:arvid&#64;libtorrent.org">arvid&#64;libtorrent.org</a></td></tr>
<tr><th class="docinfo-name">Version:</th>
<td>1.0.7</td></tr>
<td>1.0.9</td></tr>
</tbody>
</table>
<div class="contents topic" id="table-of-contents">
Expand Down
2 changes: 1 addition & 1 deletion docs/contributing.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ <h1 class="title">libtorrent manual</h1>
<tr><th class="docinfo-name">Author:</th>
<td>Arvid Norberg, <a class="last reference external" href="mailto:arvid&#64;libtorrent.org">arvid&#64;libtorrent.org</a></td></tr>
<tr><th class="docinfo-name">Version:</th>
<td>1.0.7</td></tr>
<td>1.0.9</td></tr>
</tbody>
</table>
<div class="contents topic" id="table-of-contents">
Expand Down
2 changes: 1 addition & 1 deletion docs/dht_rss.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ <h1 class="title">BitTorrent extension for DHT RSS feeds</h1>
<tr><th class="docinfo-name">Author:</th>
<td>Arvid Norberg, <a class="last reference external" href="mailto:arvid&#64;libtorrent.org">arvid&#64;libtorrent.org</a></td></tr>
<tr><th class="docinfo-name">Version:</th>
<td>1.0.7</td></tr>
<td>1.0.9</td></tr>
</tbody>
</table>
<div class="contents topic" id="table-of-contents">
Expand Down
2 changes: 1 addition & 1 deletion docs/dht_sec.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ <h1 class="title">BitTorrent DHT security extension</h1>
<tr><th class="docinfo-name">Author:</th>
<td>Arvid Norberg, <a class="last reference external" href="mailto:arvid&#64;libtorrent.org">arvid&#64;libtorrent.org</a></td></tr>
<tr><th class="docinfo-name">Version:</th>
<td>1.0.7</td></tr>
<td>1.0.9</td></tr>
</tbody>
</table>
<div class="contents topic" id="table-of-contents">
Expand Down
2 changes: 1 addition & 1 deletion docs/dht_store.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ <h1 class="title">BitTorrent extension for arbitrary DHT store</h1>
<tr><th class="docinfo-name">Author:</th>
<td>Arvid Norberg, <a class="last reference external" href="mailto:arvid&#64;libtorrent.org">arvid&#64;libtorrent.org</a></td></tr>
<tr><th class="docinfo-name">Version:</th>
<td>1.0.7</td></tr>
<td>1.0.9</td></tr>
</tbody>
</table>
<div class="contents topic" id="table-of-contents">
Expand Down
42 changes: 21 additions & 21 deletions docs/examples.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ <h1 class="title">libtorrent Examples</h1>
<tr><th class="docinfo-name">Author:</th>
<td>Arvid Norberg, <a class="last reference external" href="mailto:arvid&#64;libtorrent.org">arvid&#64;libtorrent.org</a></td></tr>
<tr><th class="docinfo-name">Version:</th>
<td>1.0.7</td></tr>
<td>1.0.9</td></tr>
</tbody>
</table>
<div class="contents topic" id="table-of-contents">
Expand All @@ -66,10 +66,10 @@ <h1>examples</h1>
<h2>simple client</h2>
<p>This is a simple client. It doesn't have much output to keep it simple:</p>
<pre class="code c++ literal-block">
<span class="comment preproc">#include &lt;stdlib.h&gt;
#include &quot;libtorrent/entry.hpp&quot;
#include &quot;libtorrent/bencode.hpp&quot;
#include &quot;libtorrent/session.hpp&quot;
<span class="comment preproc">#include</span> <span class="comment preprocfile">&lt;stdlib.h&gt;</span><span class="comment preproc">
#include</span> <span class="comment preprocfile">&quot;libtorrent/entry.hpp&quot;</span><span class="comment preproc">
#include</span> <span class="comment preprocfile">&quot;libtorrent/bencode.hpp&quot;</span><span class="comment preproc">
#include</span> <span class="comment preprocfile">&quot;libtorrent/session.hpp&quot;</span><span class="comment preproc">
</span>
<span class="keyword type">int</span> <span class="name function">main</span><span class="punctuation">(</span><span class="keyword type">int</span> <span class="name">argc</span><span class="punctuation">,</span> <span class="keyword type">char</span><span class="operator">*</span> <span class="name">argv</span><span class="punctuation">[])</span>
<span class="punctuation">{</span>
Expand Down Expand Up @@ -116,17 +116,17 @@ <h2>simple client</h2>
<h2>make_torrent</h2>
<p>Shows how to create a torrent from a directory tree:</p>
<pre class="code c++ literal-block">
<span class="comment preproc">#include &quot;libtorrent/entry.hpp&quot;
#include &quot;libtorrent/bencode.hpp&quot;
#include &quot;libtorrent/torrent_info.hpp&quot;
#include &quot;libtorrent/file.hpp&quot;
#include &quot;libtorrent/storage.hpp&quot;
#include &quot;libtorrent/hasher.hpp&quot;
#include &quot;libtorrent/create_torrent.hpp&quot;
#include &quot;libtorrent/file.hpp&quot;
#include &quot;libtorrent/file_pool.hpp&quot;
<span class="comment preproc">#include</span> <span class="comment preprocfile">&quot;libtorrent/entry.hpp&quot;</span><span class="comment preproc">
#include</span> <span class="comment preprocfile">&quot;libtorrent/bencode.hpp&quot;</span><span class="comment preproc">
#include</span> <span class="comment preprocfile">&quot;libtorrent/torrent_info.hpp&quot;</span><span class="comment preproc">
#include</span> <span class="comment preprocfile">&quot;libtorrent/file.hpp&quot;</span><span class="comment preproc">
#include</span> <span class="comment preprocfile">&quot;libtorrent/storage.hpp&quot;</span><span class="comment preproc">
#include</span> <span class="comment preprocfile">&quot;libtorrent/hasher.hpp&quot;</span><span class="comment preproc">
#include</span> <span class="comment preprocfile">&quot;libtorrent/create_torrent.hpp&quot;</span><span class="comment preproc">
#include</span> <span class="comment preprocfile">&quot;libtorrent/file.hpp&quot;</span><span class="comment preproc">
#include</span> <span class="comment preprocfile">&quot;libtorrent/file_pool.hpp&quot;</span><span class="comment preproc">
</span>
<span class="comment preproc">#include &lt;boost/bind.hpp&gt;
<span class="comment preproc">#include</span> <span class="comment preprocfile">&lt;boost/bind.hpp&gt;</span><span class="comment preproc">
</span>
<span class="keyword">using</span> <span class="keyword">namespace</span> <span class="name">libtorrent</span><span class="punctuation">;</span>

Expand Down Expand Up @@ -255,7 +255,7 @@ <h2>make_torrent</h2>
<span class="punctuation">}</span>

<span class="comment preproc">#ifndef BOOST_NO_EXCEPTIONS
</span> <span class="name">try</span>
</span> <span class="keyword">try</span>
<span class="punctuation">{</span>
<span class="comment preproc">#endif
</span> <span class="name">std</span><span class="operator">::</span><span class="name">vector</span><span class="operator">&lt;</span><span class="name">std</span><span class="operator">::</span><span class="name">string</span><span class="operator">&gt;</span> <span class="name">web_seeds</span><span class="punctuation">;</span>
Expand Down Expand Up @@ -433,11 +433,11 @@ <h2>dump_torrent</h2>
<p>This is an example of a program that will take a torrent-file as a parameter and
print information about it to std out:</p>
<pre class="code c++ literal-block">
<span class="comment preproc">#include &quot;libtorrent/entry.hpp&quot;
#include &quot;libtorrent/bencode.hpp&quot;
#include &quot;libtorrent/torrent_info.hpp&quot;
#include &quot;libtorrent/lazy_entry.hpp&quot;
#include &quot;libtorrent/magnet_uri.hpp&quot;
<span class="comment preproc">#include</span> <span class="comment preprocfile">&quot;libtorrent/entry.hpp&quot;</span><span class="comment preproc">
#include</span> <span class="comment preprocfile">&quot;libtorrent/bencode.hpp&quot;</span><span class="comment preproc">
#include</span> <span class="comment preprocfile">&quot;libtorrent/torrent_info.hpp&quot;</span><span class="comment preproc">
#include</span> <span class="comment preprocfile">&quot;libtorrent/lazy_entry.hpp&quot;</span><span class="comment preproc">
#include</span> <span class="comment preprocfile">&quot;libtorrent/magnet_uri.hpp&quot;</span><span class="comment preproc">
</span>
<span class="keyword type">int</span> <span class="name function">load_file</span><span class="punctuation">(</span><span class="name">std</span><span class="operator">::</span><span class="name">string</span> <span class="keyword">const</span><span class="operator">&amp;</span> <span class="name">filename</span><span class="punctuation">,</span> <span class="name">std</span><span class="operator">::</span><span class="name">vector</span><span class="operator">&lt;</span><span class="keyword type">char</span><span class="operator">&gt;&amp;</span> <span class="name">v</span><span class="punctuation">,</span> <span class="name">libtorrent</span><span class="operator">::</span><span class="name">error_code</span><span class="operator">&amp;</span> <span class="name">ec</span><span class="punctuation">,</span> <span class="keyword type">int</span> <span class="name">limit</span> <span class="operator">=</span> <span class="literal number integer">8000000</span><span class="punctuation">)</span>
<span class="punctuation">{</span>
Expand Down
2 changes: 1 addition & 1 deletion docs/features.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ <h1 class="title">libtorrent manual</h1>
<tr><th class="docinfo-name">Author:</th>
<td>Arvid Norberg, <a class="last reference external" href="mailto:arvid&#64;libtorrent.org">arvid&#64;libtorrent.org</a></td></tr>
<tr><th class="docinfo-name">Version:</th>
<td>1.0.7</td></tr>
<td>1.0.9</td></tr>
</tbody>
</table>
<div class="contents topic" id="table-of-contents">
Expand Down
2 changes: 1 addition & 1 deletion docs/hacking.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ <h1 class="title">libtorrent hacking</h1>
<tr><th class="docinfo-name">Author:</th>
<td>Arvid Norberg, <a class="last reference external" href="mailto:arvid&#64;libtorrent.org">arvid&#64;libtorrent.org</a></td></tr>
<tr><th class="docinfo-name">Version:</th>
<td>1.0.7</td></tr>
<td>1.0.9</td></tr>
</tbody>
</table>
<div class="contents topic" id="table-of-contents">
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<tr><th class="docinfo-name">Author:</th>
<td>Arvid Norberg, <a class="last reference external" href="mailto:arvid&#64;libtorrent.org">arvid&#64;libtorrent.org</a></td></tr>
<tr><th class="docinfo-name">Version:</th>
<td>1.0.7</td></tr>
<td>1.0.9</td></tr>
</tbody>
</table>
<div id="librarySidebar"><ul class="simple">
Expand Down
43 changes: 20 additions & 23 deletions docs/manual-ref.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ <h1 class="title">libtorrent API Documentation</h1>
<tr><th class="docinfo-name">Author:</th>
<td>Arvid Norberg, <a class="last reference external" href="mailto:arvid&#64;libtorrent.org">arvid&#64;libtorrent.org</a></td></tr>
<tr><th class="docinfo-name">Version:</th>
<td>1.0.7</td></tr>
<td>1.0.9</td></tr>
</tbody>
</table>
<div class="contents topic" id="table-of-contents">
Expand Down Expand Up @@ -429,28 +429,25 @@ <h2>file format</h2>
since this will be updated.</td>
</tr>
<tr><td><tt class="docutils literal">peers</tt></td>
<td><p class="first">list of dictionaries. Each dictionary has the following
layout:</p>
<table border="1" class="docutils">
<colgroup>
<col width="18%" />
<col width="82%" />
</colgroup>
<tbody valign="top">
<tr><td><tt class="docutils literal">ip</tt></td>
<td>string, the ip address of the peer. This is
not a binary representation of the ip
address, but the string representation. It
may be an IPv6 string or an IPv4 string.</td>
</tr>
<tr><td><tt class="docutils literal">port</tt></td>
<td>integer, the listen port of the peer</td>
</tr>
</tbody>
</table>
<p class="last">These are the local peers we were connected to when this
fast-resume data was saved.</p>
</td>
<td>string. This string contains IPv4 and port pairs of peers we
were connected to last session. The endpoints are in compact
representation. 4 bytes IPv4 address followed by 2 bytes
port. Hence, the length of this string should be divisible
by 6.</td>
</tr>
<tr><td><tt class="docutils literal">banned_peers</tt></td>
<td>string. This string has the same format as <tt class="docutils literal">peers</tt> but
instead represent IPv4 peers that we have banned.</td>
</tr>
<tr><td><tt class="docutils literal">peers6</tt></td>
<td>string. This string contains IPv6 and port pairs of peers we
were connected to last session. The endpoints are in compact
representation. 16 bytes IPv6 address followed by 2 bytes
port. The length of this string should be divisible by 18.</td>
</tr>
<tr><td><tt class="docutils literal">banned_peers6</tt></td>
<td>string. This string has the same format as <tt class="docutils literal">peers6</tt> but
instead represent IPv6 peers that we have banned.</td>
</tr>
<tr><td><tt class="docutils literal">unfinished</tt></td>
<td><p class="first">list of dictionaries. Each dictionary represents an
Expand Down

0 comments on commit b342192

Please sign in to comment.