• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

deps/H03-May-2022-56,88244,771

doc/H03-May-2022-36,56731,942

examples/H21-Aug-2021-579420

lib/H03-May-2022-608493

m4/H21-Aug-2021-12,13811,097

osx-package/etc/H03-May-2022-42

po/H03-May-2022-140,080122,807

src/H03-May-2022-150,07293,043

test/H03-May-2022-40,82733,489

ABOUT-NLSH A D21-Aug-202193.1 KiB1,3281,280

AUTHORSH A D21-Aug-20211.1 KiB7065

COPYINGH A D21-Aug-202117.6 KiB341281

ChangeLogH A D21-Aug-20218 KiB264194

Dockerfile.mingwH A D21-Aug-20213.7 KiB116103

Dockerfile.raspberrypiH A D21-Aug-20213.3 KiB10391

INSTALLH A D21-Aug-202115.4 KiB369287

LICENSE.OpenSSLH A D21-Aug-20216.8 KiB138130

Makefile.amH A D21-Aug-20211.3 KiB4029

Makefile.inH A D03-May-202231.6 KiB1,006897

NEWSH A D21-Aug-2021615 4122

READMEH A D21-Aug-202115 21

README.rstH A D21-Aug-202121.8 KiB566440

aclocal.m4H A D21-Aug-202143.5 KiB1,2051,095

android-configH A D21-Aug-20212.5 KiB6934

compileH A D21-Aug-20217.2 KiB349259

config.guessH A D21-Aug-202143.2 KiB1,4811,288

config.h.inH A D21-Aug-202120.4 KiB765530

config.rpathH A D21-Aug-202118 KiB673569

config.subH A D21-Aug-202135.3 KiB1,8021,661

configureH A D21-Aug-2021872.9 KiB29,30125,117

configure.acH A D21-Aug-202134.7 KiB1,1271,021

depcompH A D21-Aug-202123 KiB792502

install-shH A D21-Aug-202115 KiB542352

ltmain.shH A D21-Aug-2021319.6 KiB11,2528,044

makereleaseH A D21-Aug-2021818 4732

makerelease-osx.mkH A D21-Aug-202114.2 KiB450305

mingw-build-memoH A D21-Aug-20212 KiB10482

mingw-configH A D21-Aug-20212.9 KiB8324

mingw-releaseH A D21-Aug-20212 KiB5717

missingH A D21-Aug-20216.7 KiB216143

script-helperH A D21-Aug-20211.6 KiB3634

test-driverH A D21-Aug-20214.6 KiB15188

README

1See README.rst
2

README.rst

1aria2 - The ultra fast download utility
2=======================================
3
4Disclaimer
5----------
6This program comes with no warranty.
7You must use this program at your own risk.
8
9Introduction
10------------
11
12aria2 is a utility for downloading files. The supported protocols are
13HTTP(S), FTP, SFTP, BitTorrent, and Metalink. aria2 can download a
14file from multiple sources/protocols and tries to utilize your maximum
15download bandwidth. It supports downloading a file from
16HTTP(S)/FTP/SFTP and BitTorrent at the same time, while the data
17downloaded from HTTP(S)/FTP/SFTP is uploaded to the BitTorrent
18swarm. Using Metalink's chunk checksums, aria2 automatically validates
19chunks of data while downloading a file like BitTorrent.
20
21The project page is located at https://aria2.github.io/.
22
23See `aria2 Online Manual
24<https://aria2.github.io/manual/en/html/>`_ (`Russian translation
25<https://aria2.github.io/manual/ru/html/>`_, `Portuguese
26translation <https://aria2.github.io/manual/pt/html/>`_) to learn
27how to use aria2.
28
29Features
30--------
31
32Here is a list of features:
33
34* Command-line interface
35* Download files through HTTP(S)/FTP/SFTP/BitTorrent
36* Segmented downloading
37* Metalink version 4 (RFC 5854) support(HTTP/FTP/SFTP/BitTorrent)
38* Metalink version 3.0 support(HTTP/FTP/SFTP/BitTorrent)
39* Metalink/HTTP (RFC 6249) support
40* HTTP/1.1 implementation
41* HTTP Proxy support
42* HTTP BASIC authentication support
43* HTTP Proxy authentication support
44* Well-known environment variables for proxy: ``http_proxy``,
45  ``https_proxy``, ``ftp_proxy``, ``all_proxy`` and ``no_proxy``
46* HTTP gzip, deflate content encoding support
47* Verify peer using given trusted CA certificate in HTTPS
48* Client certificate authentication in HTTPS
49* Chunked transfer encoding support
50* Load Cookies from file using the Firefox3 format, Chromium/Google Chrome
51  and the Mozilla/Firefox
52  (1.x/2.x)/Netscape format.
53* Save Cookies in the Mozilla/Firefox (1.x/2.x)/Netscape format.
54* Custom HTTP Header support
55* Persistent Connections support
56* FTP/SFTP through HTTP Proxy
57* Download/Upload speed throttling
58* BitTorrent extensions: Fast extension, DHT, PEX, MSE/PSE,
59  Multi-Tracker, UDP tracker
60* BitTorrent `WEB-Seeding <http://getright.com/seedtorrent.html>`_.
61  aria2 requests chunks more than piece size to reduce the request
62  overhead. It also supports pipelined requests with piece size.
63* BitTorrent Local Peer Discovery
64* Rename/change the directory structure of BitTorrent downloads
65  completely
66* JSON-RPC (over HTTP and WebSocket)/XML-RPC interface
67* Run as a daemon process
68* Selective download in multi-file torrent/Metalink
69* Chunk checksum validation in Metalink
70* Can disable segmented downloading in Metalink
71* Netrc support
72* Configuration file support
73* Download URIs found in a text file or stdin and the destination
74  directory and output file name can be specified optionally
75* Parameterized URI support
76* IPv6 support with Happy Eyeballs
77* Disk cache to reduce disk activity
78
79
80Versioning and release schedule
81-------------------------------
82
83We use 3 numbers for aria2 version: MAJOR.MINOR.PATCH.  We will ship
84MINOR update on 15th of every month.  We may skip a release if we have
85no changes since the last release.  The feature and documentation
86freeze happens 10 days before the release day (5th day of the month)
87for translation teams.  We will raise an issue about the upcoming
88release around that day.
89
90We may release PATCH releases between regular releases if we have
91security issues.
92
93MAJOR version will stay at 1 for the time being.
94
95How to get source code
96----------------------
97
98We maintain the source code at Github:
99https://github.com/aria2/aria2
100
101To get the latest source code, run following command::
102
103    $ git clone https://github.com/aria2/aria2.git
104
105This will create aria2 directory in your current directory and source
106files are stored there.
107
108Dependency
109----------
110
111
112======================== ========================================
113features                  dependency
114======================== ========================================
115HTTPS                    OSX or GnuTLS or OpenSSL or Windows
116SFTP                     libssh2
117BitTorrent               None. Optional: libnettle+libgmp or libgcrypt
118                         or OpenSSL (see note)
119Metalink                 libxml2 or Expat.
120Checksum                 None. Optional: OSX or libnettle or libgcrypt
121                         or OpenSSL or Windows (see note)
122gzip, deflate in HTTP    zlib
123Async DNS                C-Ares
124Firefox3/Chromium cookie libsqlite3
125XML-RPC                  libxml2 or Expat.
126JSON-RPC over WebSocket  libnettle or libgcrypt or OpenSSL
127======================== ========================================
128
129
130.. note::
131
132  libxml2 has precedence over Expat if both libraries are installed.
133  If you prefer Expat, run configure with ``--without-libxml2``.
134
135.. note::
136
137  On Apple OSX the OS-level SSL/TLS support will be preferred. Hence
138  neither GnuTLS nor OpenSSL are required on that platform. If you'd
139  like to disable this behavior, run configure with
140  ``--without-appletls``.
141
142  GnuTLS has precedence over OpenSSL if both libraries are installed.
143  If you prefer OpenSSL, run configure with ``--without-gnutls``
144  ``--with-openssl``.
145
146  On Windows there is SSL implementation available that is based on
147  the native Windows SSL capabilities (Schannel) and it will be
148  preferred.  Hence neither GnuTLS nor OpenSSL are required on that
149  platform.  If you'd like to disable this behavior, run configure
150  with ``--without-wintls``.
151
152.. note::
153
154  On Apple OSX the OS-level checksum support will be preferred,
155  unless aria2 is configured with ``--without-appletls``.
156
157  libnettle has precedence over libgcrypt if both libraries are
158  installed.  If you prefer libgcrypt, run configure with
159  ``--without-libnettle --with-libgcrypt``. If OpenSSL is selected over
160  GnuTLS, neither libnettle nor libgcrypt will be used.
161
162  If none of the optional dependencies are installed, an internal
163  implementation that only supports md5 and sha1 will be used.
164
165  On Windows there is SSL implementation available that is based on
166  the native Windows capabilities and it will be preferred, unless
167  aria2 is configured with ``--without-wintls``.
168
169A user can have one of the following configurations for SSL and crypto
170libraries:
171
172* OpenSSL
173* GnuTLS + libgcrypt
174* GnuTLS + libnettle
175* Apple TLS (OSX only)
176* Windows TLS (Windows only)
177
178You can disable BitTorrent and Metalink support by providing
179``--disable-bittorrent`` and ``--disable-metalink`` to the configure
180script respectively.
181
182In order to enable async DNS support, you need c-ares.
183
184* c-ares: http://c-ares.haxx.se/
185
186How to build
187------------
188
189aria2 is primarily written in C++. Initially it was written based on
190C++98/C++03 standard features. We are now migrating aria2 to C++11
191standard. The current source code requires C++11 aware compiler. For
192well-known compilers, such as g++ and clang, the ``-std=c++11`` or
193``-std=c++0x`` flag must be supported.
194
195In order to build aria2 from the source package, you need following
196development packages (package name may vary depending on the
197distribution you use):
198
199* libgnutls-dev    (Required for HTTPS, BitTorrent, Checksum support)
200* nettle-dev       (Required for BitTorrent, Checksum support)
201* libgmp-dev       (Required for BitTorrent)
202* libssh2-1-dev    (Required for SFTP support)
203* libc-ares-dev    (Required for async DNS support)
204* libxml2-dev      (Required for Metalink support)
205* zlib1g-dev       (Required for gzip, deflate decoding support in HTTP)
206* libsqlite3-dev   (Required for Firefox3/Chromium cookie support)
207* pkg-config       (Required to detect installed libraries)
208
209You can use libgcrypt-dev instead of nettle-dev and libgmp-dev:
210
211* libgpg-error-dev (Required for BitTorrent, Checksum support)
212* libgcrypt-dev    (Required for BitTorrent, Checksum support)
213
214You can use libssl-dev instead of
215libgnutls-dev, nettle-dev, libgmp-dev, libgpg-error-dev and libgcrypt-dev:
216
217* libssl-dev       (Required for HTTPS, BitTorrent, Checksum support)
218
219You can use libexpat1-dev instead of libxml2-dev:
220
221* libexpat1-dev    (Required for Metalink support)
222
223On Fedora you need the following packages: gcc, gcc-c++, kernel-devel,
224libgcrypt-devel, libxml2-devel, openssl-devel, gettext-devel, cppunit
225
226If you downloaded source code from git repository, you have to install
227following packages to get autoconf macros:
228
229* libxml2-dev
230* libcppunit-dev
231* autoconf
232* automake
233* autotools-dev
234* autopoint
235* libtool
236
237And run following command to generate configure script and other files
238necessary to build the program::
239
240    $ autoreconf -i
241
242Also you need `Sphinx <http://sphinx-doc.org/>`_ to build man page.
243
244If you are building aria2 for Mac OS X, take a look at
245the makerelease-osx.mk GNU Make makefile.
246
247The quickest way to build aria2 is first run configure script::
248
249    $ ./configure
250
251To build statically linked aria2, use ``ARIA2_STATIC=yes``
252command-line option::
253
254    $ ./configure ARIA2_STATIC=yes
255
256After configuration is done, run ``make`` to compile the program::
257
258    $ make
259
260See `Cross-compiling Windows binary`_ to create a Windows binary.
261See `Cross-compiling Android binary`_ to create an Android binary.
262
263The configure script checks available libraries and enables as many
264features as possible except for experimental features not enabled by
265default.
266
267Since 1.1.0, aria2 checks the certificate of HTTPS servers by default.
268If you build with OpenSSL or the recent version of GnuTLS which has
269``gnutls_certificate_set_x509_system_trust()`` function and the
270library is properly configured to locate the system-wide CA
271certificates store, aria2 will automatically load those certificates
272at the startup. If it is not the case, I recommend to supply the path
273to the CA bundle file. For example, in Debian the path to CA bundle
274file is '/etc/ssl/certs/ca-certificates.crt' (in ca-certificates
275package). This may vary depending on your distribution. You can give
276it to configure script using ``--with-ca-bundle option``::
277
278    $ ./configure --with-ca-bundle='/etc/ssl/certs/ca-certificates.crt'
279    $ make
280
281Without ``--with-ca-bundle`` option, you will encounter the error when
282accessing HTTPS servers because the certificate cannot be verified
283without CA bundle. In such case, you can specify the CA bundle file
284using aria2's ``--ca-certificate`` option.  If you don't have CA bundle
285file installed, then the last resort is disable the certificate
286validation using ``--check-certificate=false``.
287
288Using the native OSX (AppleTLS) and/or Windows (WinTLS) implementation
289will automatically use the system certificate store, so
290``--with-ca-bundle`` is not necessary and will be ignored when using
291these implementations.
292
293By default, the bash_completion file named ``aria2c`` is installed to
294the directory ``$prefix/share/doc/aria2/bash_completion``.  To change
295the install directory of the file, use ``--with-bashcompletiondir``
296option.
297
298After a ``make`` the executable is located at ``src/aria2c``.
299
300aria2 uses CppUnit for automated unit testing. To run the unit test::
301
302    $ make check
303
304Cross-compiling Windows binary
305------------------------------
306
307In this section, we describe how to build a Windows binary using a
308mingw-w64 (http://mingw-w64.org/doku.php) cross-compiler on Debian
309Linux. The MinGW (http://www.mingw.org/) may not be able to build
310aria2.
311
312The easiest way to build Windows binary is use Dockerfile.mingw.  See
313Dockerfile.mingw how to build binary.  If you cannot use Dockerfile,
314then continue to read following paragraphs.
315
316Basically, after compiling and installing depended libraries, you can
317do cross-compile just passing appropriate ``--host`` option and
318specifying ``CPPFLAGS``, ``LDFLAGS`` and ``PKG_CONFIG_LIBDIR``
319variables to configure. For convenience and lowering our own
320development cost, we provide easier way to configure the build
321settings.
322
323``mingw-config`` script is a configure script wrapper for mingw-w64.
324We use it to create official Windows build.  This script assumes
325following libraries have been built for cross-compile:
326
327* c-ares
328* expat
329* sqlite3
330* zlib
331* libssh2
332* cppunit
333
334Some environment variables can be adjusted to change build settings:
335
336``HOST``
337  cross-compile to build programs to run on ``HOST``. It defaults to
338  ``i686-w64-mingw32``. To build 64bit binary, specify
339  ``x86_64-w64-mingw32``.
340
341``PREFIX``
342  Prefix to the directory where dependent libraries are installed.  It
343  defaults to ``/usr/local/$HOST``. ``-I$PREFIX/include`` will be
344  added to ``CPPFLAGS``. ``-L$PREFIX/lib`` will be added to
345  ``LDFLAGS``. ``$PREFIX/lib/pkgconfig`` will be set to
346  ``PKG_CONFIG_LIBDIR``.
347
348For example, to build 64bit binary do this::
349
350    $ HOST=x86_64-w64-mingw32 ./mingw-config
351
352If you want libaria2 dll with ``--enable-libaria2``, then don't use
353``ARIA2_STATIC=yes`` and prepare the DLL version of external
354libraries.
355
356Cross-compiling Android binary
357------------------------------
358
359In this section, we describe how to build Android binary using Android
360NDK cross-compiler on Debian Linux.
361
362At the time of this writing, Android NDK r21e should compile aria2
363without errors.
364
365``android-config`` script is a configure script wrapper for Android
366build.  We use it to create official Android build.  This script
367assumes the following libraries have been built for cross-compile:
368
369* c-ares
370* openssl
371* expat
372* zlib
373* libssh2
374
375When building the above libraries, make sure that disable shared
376library and enable only static library. We are going to link those
377libraries statically.
378
379``android-config`` assumes that ``$ANDROID_HOME`` and ``$NDK``
380environment variables are defined.
381
382We currently use Android NDK r21e.  ``$NDK`` should point to the
383directory to Anroid NDK.  The build tools will be found under
384``$NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/``.
385
386All the dependent libraries must be installed under
387``$ANDROID_HOME/usr/local``.
388
389After ``android-config``, run ``make`` to compile sources.
390
391Building documentation
392----------------------
393
394`Sphinx <http://sphinx-doc.org/>`_ is used to build the
395documentation. aria2 man pages will be build when you run ``make`` if
396they are not up-to-date.  You can also build HTML version of aria2 man
397page by ``make html``. The HTML version manual is also available at
398`online <https://aria2.github.io/manual/en/html/>`_ (`Russian
399translation <https://aria2.github.io/manual/ru/html/>`_, `Portuguese
400translation <https://aria2.github.io/manual/pt/html/>`_).
401
402BitTorrent
403-----------
404
405About file names
406~~~~~~~~~~~~~~~~
407The file name of the downloaded file is determined as follows:
408
409single-file mode
410    If "name" key is present in .torrent file, file name is the value
411    of "name" key. Otherwise, file name is the base name of .torrent
412    file appended by ".file". For example, .torrent file is
413    "test.torrent", then file name is "test.torrent.file".  The
414    directory to store the downloaded file can be specified by -d
415    option.
416
417multi-file mode
418    The complete directory/file structure mentioned in .torrent file
419    is created.  The directory to store the top directory of
420    downloaded files can be specified by -d option.
421
422Before download starts, a complete directory structure is created if
423needed. By default, aria2 opens at most 100 files mentioned in
424.torrent file, and directly writes to and reads from these files.
425The number of files to open simultaneously can be controlled by
426``--bt-max-open-files`` option.
427
428DHT
429~~~
430
431aria2 supports mainline compatible DHT. By default, the routing table
432for IPv4 DHT is saved to ``$XDG_CACHE_HOME/aria2/dht.dat`` and the
433routing table for IPv6 DHT is saved to
434``$XDG_CACHE_HOME/aria2/dht6.dat`` unless files exist at
435``$HOME/.aria2/dht.dat`` or ``$HOME/.aria2/dht6.dat``. aria2 uses same
436port number to listen on for both IPv4 and IPv6 DHT.
437
438UDP tracker
439~~~~~~~~~~~
440
441UDP tracker support is enabled when IPv4 DHT is enabled.  The port
442number of UDP tracker is shared with DHT. Use ``--dht-listen-port``
443option to change the port number.
444
445Other things should be noted
446~~~~~~~~~~~~~~~~~~~~~~~~~~~~
447
448* ``-o`` option is used to change the file name of .torrent file itself,
449  not a file name of a file in .torrent file. For this purpose, use
450  ``--index-out`` option instead.
451* The port numbers that aria2 uses by default are 6881-6999 for TCP
452  and UDP.
453* aria2 doesn't configure port-forwarding automatically. Please
454  configure your router or firewall manually.
455* The maximum number of peers is 55. This limit may be exceeded when
456  download rate is low. This download rate can be adjusted using
457  ``--bt-request-peer-speed-limit`` option.
458* As of release 0.10.0, aria2 stops sending request message after
459  selective download completes.
460
461Metalink
462--------
463
464The current implementation supports HTTP(S)/FTP/SFTP/BitTorrent.  The
465other P2P protocols are ignored. Both Metalink4 (RFC 5854) and
466Metalink version 3.0 documents are supported.
467
468For checksum verification, md5, sha-1, sha-224, sha-256, sha-384 and
469sha-512 are supported. If multiple hash algorithms are provided, aria2
470uses stronger one. If whole file checksum verification fails, aria2
471doesn't retry the download and just exits with non-zero return code.
472
473The supported user preferences are version, language, location,
474protocol and os.
475
476If chunk checksums are provided in Metalink file, aria2 automatically
477validates chunks of data during download. This behavior can be turned
478off by a command-line option.
479
480If signature is included in a Metalink file, aria2 saves it as a file
481after the completion of the download.  The file name is download
482file name + ".sig". If same file already exists, the signature file is
483not saved.
484
485In Metalink4, multi-file torrent could appear in metalink:metaurl
486element.  Since aria2 cannot download 2 same torrents at the same
487time, aria2 groups files in metalink:file element which has same
488BitTorrent metaurl and downloads them from a single BitTorrent swarm.
489This is basically multi-file torrent download with file selection, so
490the adjacent files which is not in Metalink document but shares same
491piece with selected file are also created.
492
493If relative URI is specified in metalink:url or metalink:metaurl
494element, aria2 uses the URI of Metalink file as base URI to resolve
495the relative URI. If relative URI is found in Metalink file which is
496read from local disk, aria2 uses the value of ``--metalink-base-uri``
497option as base URI. If this option is not specified, the relative URI
498will be ignored.
499
500Metalink/HTTP
501-------------
502
503The current implementation only uses rel=duplicate links only.  aria2
504understands Digest header fields and check whether it matches the
505digest value from other sources. If it differs, drop connection.
506aria2 also uses this digest value to perform checksum verification
507after download finished. aria2 recognizes geo value. To tell aria2
508which location you prefer, you can use ``--metalink-location`` option.
509
510netrc
511-----
512
513netrc support is enabled by default for HTTP(S)/FTP/SFTP.  To disable
514netrc support, specify -n command-line option.  Your .netrc file
515should have correct permissions(600).
516
517WebSocket
518---------
519
520The WebSocket server embedded in aria2 implements the specification
521defined in RFC 6455. The supported protocol version is 13.
522
523libaria2
524--------
525
526The libaria2 is a C++ library which offers aria2 functionality to the
527client code. Currently, libaria2 is not built by default. To enable
528libaria2, use ``--enable-libaria2`` configure option.  By default,
529only the shared library is built. To build static library, use
530``--enable-static`` configure option as well. See libaria2
531documentation to know how to use API.
532
533References
534----------
535
536* `aria2 Online Manual <https://aria2.github.io/manual/en/html/>`_
537* https://aria2.github.io/
538* `RFC 959 FILE TRANSFER PROTOCOL (FTP) <http://tools.ietf.org/html/rfc959>`_
539* `RFC 1738 Uniform Resource Locators (URL) <http://tools.ietf.org/html/rfc1738>`_
540* `RFC 2428 FTP Extensions for IPv6 and NATs <http://tools.ietf.org/html/rfc2428>`_
541* `RFC 2616 Hypertext Transfer Protocol -- HTTP/1.1 <http://tools.ietf.org/html/rfc2616>`_
542* `RFC 3659 Extensions to FTP <http://tools.ietf.org/html/rfc3659>`_
543* `RFC 3986 Uniform Resource Identifier (URI): Generic Syntax <http://tools.ietf.org/html/rfc3986>`_
544* `RFC 4038 Application Aspects of IPv6 Transition <http://tools.ietf.org/html/rfc4038>`_
545* `RFC 5854 The Metalink Download Description Format <http://tools.ietf.org/html/rfc5854>`_
546* `RFC 6249 Metalink/HTTP: Mirrors and Hashes <http://tools.ietf.org/html/rfc6249>`_
547* `RFC 6265 HTTP State Management Mechanism <http://tools.ietf.org/html/rfc6265>`_
548* `RFC 6266 Use of the Content-Disposition Header Field in the Hypertext Transfer Protocol (HTTP) <http://tools.ietf.org/html/rfc6266>`_
549* `RFC 6455 The WebSocket Protocol <http://tools.ietf.org/html/rfc6455>`_
550* `RFC 6555 Happy Eyeballs: Success with Dual-Stack Hosts <http://tools.ietf.org/html/rfc6555>`_
551
552* `The BitTorrent Protocol Specification <http://www.bittorrent.org/beps/bep_0003.html>`_
553* `BitTorrent: DHT Protocol <http://www.bittorrent.org/beps/bep_0005.html>`_
554* `BitTorrent: Fast Extension <http://www.bittorrent.org/beps/bep_0006.html>`_
555* `BitTorrent: IPv6 Tracker Extension <http://www.bittorrent.org/beps/bep_0007.html>`_
556* `BitTorrent: Extension for Peers to Send Metadata Files <http://www.bittorrent.org/beps/bep_0009.html>`_
557* `BitTorrent: Extension Protocol <http://www.bittorrent.org/beps/bep_0010.html>`_
558* `BitTorrent: Multitracker Metadata Extension <http://www.bittorrent.org/beps/bep_0012.html>`_
559* `BitTorrent: UDP Tracker Protocol for BitTorrent <http://www.bittorrent.org/beps/bep_0015.html>`_
560  and `BitTorrent udp-tracker protocol specification <http://www.rasterbar.com/products/libtorrent/udp_tracker_protocol.html>`_.
561* `BitTorrent: WebSeed - HTTP/FTP Seeding (GetRight style) <http://www.bittorrent.org/beps/bep_0019.html>`_
562* `BitTorrent: Private Torrents <http://www.bittorrent.org/beps/bep_0027.html>`_
563* `BitTorrent: BitTorrent DHT Extensions for IPv6 <http://www.bittorrent.org/beps/bep_0032.html>`_
564* `BitTorrent: Message Stream Encryption <http://wiki.vuze.com/w/Message_Stream_Encryption>`_
565* `Kademlia: A Peer-to-peer Information System Based on the  XOR Metric <https://pdos.csail.mit.edu/~petar/papers/maymounkov-kademlia-lncs.pdf>`_
566